C# 获取程序编译时间

C# 获取程序编译时间 var compileTime = System.IO.File.GetLastWriteTime(System.Reflection.Assembly.GetEntryAssembly().Location);

C#检查系统是否支持HttpListener

C#检查系统是否支持HttpListener // 检查系统是否支持 if (!HttpListener.IsSupported) { throw new System.InvalidOperationException("必须为 Windows XP SP2 或 Server 2003 以上系统!"); }

C# 操作INI文件的类

C# 操作INI文件的类 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using System.Text; namespa...

C# 格式化时间

C# 格式化时间的格式,如下: yyyy-MM-dd HH:mm:ss 记忆方法:只有MH(马航)是大写,其它小写。

Qt  quick Image从文件中加载图片

Qt  quick Image 从文件中加载图片: Image{ width: parent.width height: parent.height source: "file:./images/home.png" } 注意,当前目录是批Qt Creater中设置的工作目录

PDO execute()和exec()的区别

PDO execute()和exec()的区别如下: exec() 执行一条sql语句,返回受影响的行数,此函数不返回结果集合。 execute()函数 用于执行已经预处理过的语句,返回结果只有成功或失败。预处理要使用prepare...

php.ini 打开错误信息

php.ini 打开错误信息,修改如下配置: display_errors=On error_reporting = E_ALL | E_STRICT 如果使用apache,则要在httpd.conf最后添加  php_flag display_errors&n...

反射实现 WPF 按钮的  PerformClick 

反射实现 WPF 按钮的  PerformClick: using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Win...

Qt Quick 中最大化窗体

Qt Quick 中最大化窗体: import QtQuick 2.5 import QtQuick.Window 2.2 Window { visible: true // width: 640 // height: 480 visibility: "Maximized" // 全屏使用 FullScreen ...