コード例 #1
0
 // Token: 0x06001676 RID: 5750 RVA: 0x00083E3C File Offset: 0x0008203C
 internal UserOptionPropertyDefinition(string name, Type type, UserOptionPropertyDefinition.Validate validate, Guid guid)
 {
     this.name     = name;
     this.type     = type;
     this.guid     = guid;
     this.validate = validate;
     this.hashCode = (this.guid.GetHashCode() ^ this.name.GetHashCode());
 }
コード例 #2
0
 // Token: 0x06001677 RID: 5751 RVA: 0x00083E8F File Offset: 0x0008208F
 internal UserOptionPropertyDefinition(string name, Type type, UserOptionPropertyDefinition.Validate validate) : this(name, type, validate, UserOptionPropertyDefinition.publicStringsGuid)
 {
 }