Ejemplo n.º 1
0
 public override Boolean Equals(object obj)
 {
     return(ResourceName.Equals(this, obj as ResourceLang));
 }
Ejemplo n.º 2
0
 /// <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);
 }
Ejemplo n.º 3
0
 public Boolean Equals(ResourceLang other)
 {
     return(ResourceName.Equals(this, other));
 }
Ejemplo n.º 4
0
 /// <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);
 }