예제 #1
0
 public string this[ICustomAttributeDefinition attributeDefinition]
 {
     get
     {
         throw new NotImplementedException();
     }
     set
     {
         throw new NotImplementedException();
     }
 }
예제 #2
0
 /// <inheritdoc/>
 public string this[ICustomAttributeDefinition attributeDefinition]
 {
     get
     {
         return(this[attributeDefinition.Ordinal]);
     }
     set
     {
         this[attributeDefinition.Ordinal] = value;
     }
 }