コード例 #1
0
 // Token: 0x060008BD RID: 2237 RVA: 0x0001CC7C File Offset: 0x0001AE7C
 internal UserConfigurationPropertyDefinition(string name, Type type, UserConfigurationPropertyDefinition.Validate validate, Guid guid)
 {
     this.name     = name;
     this.type     = type;
     this.guid     = guid;
     this.validate = validate;
     this.hashCode = (this.guid.GetHashCode() ^ this.name.ToLowerInvariant().GetHashCode());
 }
コード例 #2
0
 // Token: 0x060008BE RID: 2238 RVA: 0x0001CCD4 File Offset: 0x0001AED4
 internal UserConfigurationPropertyDefinition(string name, Type type, UserConfigurationPropertyDefinition.Validate validate) : this(name, type, validate, UserConfigurationPropertyDefinition.publicStringsGuid)
 {
 }