Removes one element from this Map.
Declaration Syntax
C# |
public void RemAttribute( string key )
Parameters
- key (String)
- Name of the element to remove
Examples
CopyC#
Sofu.Sofu.Map file = SofuReader.LoadFile("file.sofu"); if (file.HasAttribute("Debug")) file.RemAttribute("Debug"); file.Write("file.sofu");