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