.Net
文章平均质量分 75
rtewryery
这个作者很懒,什么都没留下…
展开
-
What is this site?
http://www.pinvoke.net/index.aspx PINVOKE.NET attempts to address the difficulty of calling Win32 or other unmanaged APIs in managed code (languages such as C# and VB .NET). Manually defining a原创 2006-10-13 17:05:00 · 1051 阅读 · 0 评论 -
QueryPerformanceCounter,QueryPerformanceFrequency
[DllImport("Kernel32.dll")] public static extern bool QueryPerformanceCounter(out long value); [DllImport("Kernel32.dll")] public static extern bool QueryPerformanceF原创 2006-07-27 20:07:00 · 1596 阅读 · 0 评论 -
委托、事件和回调的关系
委托、事件和回调的关系作者: 李艳庆日期: 2006-04-26 //执行第一种回调,委托回调 object obj = test.HandleString("李", "艳庆", new CallBackTest.CallBackDelegate(client.CallBackFunction)); string str = obj as string; Console转载 2006-07-10 11:33:00 · 868 阅读 · 0 评论 -
c# 中颜色的使用
.NET框架中的颜色基于4种成份,透明度,红,绿和蓝.每一种成份都是一个字节,在0--255之间取值.Color结构代表颜色,当类和方法要作用于颜色的时候,它们作用于Color结构的一个实例.Color结构通过表态属性公开了140个命名颜色,这些属性返回预先创建的Color对象.Color newColor = Color.Red;创建Color实例的另一种方式是调用静态FromArgb方法,原创 2006-07-10 11:26:00 · 976 阅读 · 0 评论