Ejemplo n.º 1
0
        internal CtfFieldDescriptor(CtfMetadataTypeDescriptor type, string name)
        {
            Debug.Assert(type != null);
            Debug.Assert(!string.IsNullOrWhiteSpace(name));

            this.TypeDescriptor = type;
            this.Name           = name;
        }
 internal void AddValue(string name, CtfMetadataTypeDescriptor value)
 {
     this.typeProperties[name] = value;
 }