JSONTools.JSONObjectOLD.Remove C# (CSharp) Method

Remove() public method

public Remove ( string Name ) : void
Name string
return void
        public void Remove(string Name)
        {
            JSONAttribute a = Find(Name);
            if (a != null)
            {
                this.Values.Remove(a);
            }
        }