
c#
浪仙
了解就知道
展开
-
C#的ToString的常用用法 .
// C 货币 2.5.ToString("C"); // ¥2.50 // D 10进制数 25.ToString("D5"); // 25000 // E 科学型 25000.ToString("E"); // 2.500000E+005 // F 固原创 2011-08-29 10:49:37 · 3218 阅读 · 0 评论 -
后台打开一个子窗口,显示在屏幕中间,关闭子窗体刷新子窗体代码 .
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "click", "var width=Math.round((window.screen.width-380)/2);var height=Math.r原创 2011-08-29 12:18:48 · 1226 阅读 · 0 评论 -
C#错误类
#region 将错误以文本的形式记录下来. /// /// 将错误以文本的形式记录下来. /// /// 捕获的异常. public static void WriteLog(Exception Ex) { string ErrTime = DateTime.Now.ToString("yyyy-MM-dd HH:原创 2012-02-15 14:17:44 · 621 阅读 · 0 评论 -
.net 动态创建sql数据库表
c# asp .net 动态创建sql数据库表的方法,需要的朋友可以参考一下原创 2014-07-07 11:17:02 · 1392 阅读 · 0 评论 -
删除.net程序里的文件(破坏程序)
private bool IsUse() { bool result = false; DateTime dtstart = Convert.ToDateTime(("2013-10-15 08:00:00").ToString()); // DateTime enddate = Convert.ToDateTime(("2013-08-...原创 2014-06-19 11:00:55 · 787 阅读 · 0 评论 -
接口的简单应用
//No:1 首先,我们要封装一个接口,接口中不要实现具体的方法(说白了这就是一个架子而已!)using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ interface Ipeople //接口声明:...原创 2019-06-25 16:07:28 · 185 阅读 · 0 评论 -
libpng warning: iccp :not recognizing known sRGB profile that has
vs运行控制台应用程序 有时候会输出很多行libpng warning: iccp :not recognizing known sRGB profile that has我正在使用的输入法是QQ输入法,切换成别的输入法运行就不出现了...原创 2019-06-26 10:50:24 · 823 阅读 · 0 评论