JSONTools.JSONObjectOLD.Find C# (CSharp) Method

Find() public method

public Find ( string Name ) : JSONAttribute
Name string
return JSONAttribute
        public JSONAttribute Find(string Name)
        {
            if (string.IsNullOrEmpty(Name)) { return null; }

            foreach (JSONAttribute a in Values)
            {
                if (a.Name.ToUpper() == Name.ToUpper())
                {
                    return a;
                }
            }
            return null;
        }