摘要:
DateTime属于结构类型,所以是值类型在C#中简单类型,结构类型,枚举类型是值类型;其余的:接口,类,字符串,数组,委托都是引用类型 阅读全文
摘要:
C#异常类相关总结在做异常处理的时候,最好能在应用程序所有的入口处(事件处理函数,主函数,线程入口)使用try-catch。但是不要在程序构造函数入口处添加try-catch,因为此处产生异常,它自己并没有能力来处理,因为它还没有构造完毕,只能再向外层抛出异常。C#异常类一、基类ExceptionC... 阅读全文
摘要:
对象 - > 序列化> 字节流> IO 读取字节流 进行操作1 英文字符 = 1字节= 8bit( 8个二进制 位 )= 0 到 255= 1个 ascii 编码 阅读全文
摘要:
public static T[] SetAllValues(this T[] array, T value){ for ( int i=0; i<array.Length;i++) { array[i]=value; } return array;... 阅读全文
摘要:
public static string ToXml(this T o) where T : new(){ string retVal; using (var ms = new MemoryStream()) { var xs = ... 阅读全文
摘要:
Between 值范围比较可以判断一个值是否落在区间范围值中。public static bool Between(this T me, T lower, T upper) where T : IComparable{ return me.CompareTo(lower) >= 0 && ... 阅读全文
摘要:
public static DataTable ToDataTable(this IEnumerable varlist) { DataTable dtReturn = new DataTable(); // column names ... 阅读全文
摘要:
ajax 是有: javascript,css ,xmlHttpResquest,Dom 几种技术组合而成;xmlHttpRequest 是ajax最重要的,允许与服务器进行交互 获取 text格式 和xml格式的数据,进行数据处理; 注意: 因为 ajax是进行数据处理的 ,所以不能 通过ajax... 阅读全文