Noear.Snacks.ONode.get C# (CSharp) Method

get() public method

public get ( int index ) : ONode
index int
return ONode
    public ONode get(int index)
    {
        tryInitArray();

            if (_array.elements.Count > index)
                return _array.elements[index];
            else
                return null;
    }

Same methods

ONode::get ( String key ) : ONode