Noear.Snacks.ONode.load C# (CSharp) Метод

load() публичный статический Метод

public static load ( String ops ) : ONode
ops String
Результат ONode
    public static ONode load(String ops)
    {
        if (ops == null || ops.Length < 2)
                return new ONode();

            if (ops[0] == '<')
                return readXmlValue(new XmlReader(ops));
            else
                return readJsonValue(new JsonReader(ops));
    }