Newtonsoft.Json.JsonNameTable.Get C# (CSharp) Method

Get() public abstract method

Gets a string containing the same characters as the specified range of characters in the given array.
public abstract Get ( Array key, int start, int length ) : string
key Array The character array containing the name to find.
start int The zero-based index into the array specifying the first character of the name.
length int The number of characters in the name.
return string
        public abstract string Get(char[] key, int start, int length);
    }
JsonNameTable