コード例 #1
0
 internal AttributeEnumerator(AttributeCollection coll)
 {
     _coll = coll;
     _pos = -1;
 }
コード例 #2
0
 internal AttributeEnumerator(AttributeCollection coll)
 {
     _coll = coll;
     _pos  = -1;
 }
コード例 #3
-1
ファイル: TypeDescriptor.cs プロジェクト: apakian/fluorinefx
		public TypeDescriptor()
		{
            _attributeCollection = new AttributeCollection();
            _interfaces = new TypeDescriptor[0];
            _methods = new MethodDescriptor[0];
            _properties = new PropertyDescriptor[0];
            _fields = new FieldDescriptor[0];
            _isArray = false;
		}