代码改变世界

阅读排行榜

C#类型转换3

2012-09-15 16:57 by hongjiumu, 232 阅读, 收藏,
摘要: namespace WDBuyNET.DMSFrame.Utils{ public static class TypeExtentions { public static bool IsPrimitive(this Type t) { bool result; if (t.IsGenericType) { result = (TypeExtentions.IsNullableType(t) && TypeExtentions.IsPrimitive(Nulla... 阅读全文

Cristi Potlog's Chart Control for .NET

2013-02-19 23:14 by hongjiumu, 229 阅读, 收藏,
摘要: Cristi Potlog's Chart Control for .NEThttp://www.codeproject.com/Articles/10966/Cristi-Potlog-s-Chart-Control-for-NET 阅读全文

深入浅出Visual_C动态链接库(Dll)编程(宋宝华)----整理(word)

2014-05-11 21:12 by hongjiumu, 228 阅读, 收藏,
摘要: 深入浅出Visual_C动态链接库(Dll)编程.zip 阅读全文

(Transfered)WPF Tutorial:Beginning

2012-11-01 23:36 by hongjiumu, 228 阅读, 收藏,
摘要: WPF Tutorial 阅读全文

enum don't allocate any memory

2013-12-30 19:57 by hongjiumu, 226 阅读, 收藏,
摘要: int main() { _asm{ mov edi,edi mov edi,edi } enum Color{Red=12,Green,Yellow}; _asm{ mov edi,edi mov edi,edi } Color c=Red; //The only valid values that you can assign to an enumeration variable without a type //cast are the enumerator values used in defining the type.... 阅读全文
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 42 下一页