摘要: 阅读全文
posted @ 2010-09-11 01:25 Aegis 阅读(179) 评论(1) 推荐(0) 编辑
摘要: 从2003年开始接触.net以来,已经有七年之痒了。看过和研究过的.net书籍、资料已经不计其数,但是总是有点力不从心的感觉;新的framework版本出来,虽然有MSDN总是不尽人意,你总是要去寻求新的专门书籍来学习。  有时候也在想那些书籍的作者是如何研习新的技术的呢。其实03年的时候就接触过serge Lindin的讲解MSIL的书,但是没有深究。直到6月份,将expert.net 2.0 ... 阅读全文
posted @ 2010-08-28 15:36 Aegis 阅读(569) 评论(2) 推荐(0) 编辑
摘要: using System.Runtime.InteropServices;using System.Security.Permissions;namespace System{ namespace Reflection { [Serializable] [ClassInterfaceAttribute(ClassInterfaceType.None)] [ComVisibleAttribute(t... 阅读全文
posted @ 2010-08-28 21:24 Aegis 阅读(799) 评论(0) 推荐(0) 编辑
摘要: namespace System{ [StructLayout(LayoutKind.Sequential,CharSet=CharSet.Ansi)] internal struct UnSafeCharBuffer { private char* m_buffer; private int m_totalSize; private int m_length; public UnSafe... 阅读全文
posted @ 2010-08-28 21:23 Aegis 阅读(259) 评论(0) 推荐(0) 编辑
摘要: using System.Runtime.CompilerServices;using System.Reflection;namespace System{ [StructLayout(LayoutKind.Sequential,CharSet=CharSet.Ansi)] internal struct Utf8String { private void* m_pStringHeap; p... 阅读全文
posted @ 2010-08-28 21:23 Aegis 阅读(299) 评论(0) 推荐(0) 编辑
摘要: using System.Security.Permissions;using System.Runtime.InteropServices;namespace System{ [Serializable,ComVisible(true)] [SecurityPermissionAttribute(SecurityAction.InheritanceDemand,Flags=SecurityPer... 阅读全文
posted @ 2010-08-28 21:22 Aegis 阅读(459) 评论(0) 推荐(0) 编辑
摘要: using System.Runtime.InteropServices;namespace System{ [StructLayout(LayoutKind.Sequential, Pack = 0, Size = 1, CharSet = CharSet.Ansi), Serializable, ComVisible(true)] public sealed class Void : Syst... 阅读全文
posted @ 2010-08-28 21:22 Aegis 阅读(146) 评论(0) 推荐(0) 编辑
摘要: using System.Runtime.InteropServices;using System.Reflection;namespace System{ [ComVisibleAttribute(true)] public abstract class ValueType : System.Object { public override bool Equals(object obj) { /... 阅读全文
posted @ 2010-08-28 21:21 Aegis 阅读(495) 评论(0) 推荐(0) 编辑
摘要: using System.Collections.Generic;using System.Globalization;using System.Runtime.Serialization;using System.Reflection;namespace System{ [Serializable] private class UnitySerializationHolder:System.Ob... 阅读全文
posted @ 2010-08-28 21:21 Aegis 阅读(329) 评论(0) 推荐(0) 编辑
摘要: using System.Globalization;using System.Runtime.InteropServices;namespace System{ [StructLayout(LayoutKind.Sequential,CharSet=CharSet.Ansi),Serializable,CLSCompliant(false),ComVisible(true)] public st... 阅读全文
posted @ 2010-08-28 21:20 Aegis 阅读(297) 评论(0) 推荐(0) 编辑
摘要: using System.Globalization;using System.Runtime.InteropServices;namespace System{ [StructLayout(LayoutKind.Sequential),Serializable] [ComVisilble(true),CLSCompliant(fasle)] public struct UInt64:System... 阅读全文
posted @ 2010-08-28 21:20 Aegis 阅读(449) 评论(0) 推荐(0) 编辑