namespace LC.Newtonsoft.Json { /// /// Base class for a table of atomized string objects. /// public abstract class JsonNameTable { /// /// Gets a string containing the same characters as the specified range of characters in the given array. /// /// The character array containing the name to find. /// The zero-based index into the array specifying the first character of the name. /// The number of characters in the name. /// A string containing the same characters as the specified range of characters in the given array. public abstract string? Get(char[] key, int start, int length); } }