------ #### ryControls V3.0.2109.1201 - *.[改进]ObjectListView控件的AspectToStringConverter函数新增行数据参数。 - *.[改进]ObjectListView控件的行高默认到25像素。 - *.[改进]ObjectListView控件默认行选择而不是列选择。 - *.[改进]ObjectListView控件新增大量中文注释。 - *.[改进]ObjectListView控件的ShowGroups属性默认值为false。
18 lines
826 B
C#
18 lines
826 B
C#
namespace 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);
|
|
}
|
|
}
|