csharp-sdk-upm/Libs/Newtonsoft.Json/JsonNameTable.cs

18 lines
828 B
C#
Raw Normal View History

2021-03-29 14:54:12 +08:00
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>
2021-03-30 10:54:25 +08:00
public abstract string Get(char[] key, int start, int length);
2021-03-29 14:54:12 +08:00
}
}