public override Boolean Equals(object obj) { return(ResourceName.Equals(this, obj as ResourceLang)); }
/// <summary>Adds the specified ResourceLang to the specified ResourceName without invalidating the structure. The ResourceName must already exist in this structure.</summary> protected void UnderlyingAdd(ResourceName name, ResourceLang lang) { name.UnderlyingLangs.Add(lang); }
public Boolean Equals(ResourceLang other) { return(ResourceName.Equals(this, other)); }
/// <summary>Adds the specified ResourceName to the specified ResourceType without invalidating the structure. The ResourceType must already exist in this structure.</summary> protected void UnderlyingAdd(ResourceType type, ResourceName name) { type.UnderlyingNames.Add(name); }