
C#基础
aladdinty
这个作者很懒,什么都没留下…
展开
-
C#反射小例
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection ;using Com.Zhao.Des.VectorClass ;using Com.Zhao.Attr.WathsNewAttributes ;原创 2009-01-05 22:54:00 · 1090 阅读 · 0 评论 -
C#动态加载创建程序集
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.CodeDom.Compiler ;using Microsoft.CSharp ;using System.Reflection ;using System.IO ;nam原创 2009-01-09 12:39:00 · 1637 阅读 · 0 评论 -
C#中的位运算介绍
在C#中可以对整型运算对象按位进行逻辑运算。按位进行逻辑运算的意义是:依次取被运算对象的每个位,进行逻辑运算,每个位的逻辑运算结果是结果值的每个位。C#支持的位逻辑运算符如表2.9所示。运算符号意义运算对象类型运算结果类型对象数实例 ~位逻辑非运算整型,字符型整型1~a原创 2008-12-20 17:49:00 · 1805 阅读 · 0 评论