SoftBasicArraySelectMiddleT 方法 |
获取到数组里面的中间指定长度的数组
Get an array of the specified length in the array
命名空间:
HslCommunication.BasicFramework
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static T[] ArraySelectMiddle<T>(
T[] value,
int index,
int length
)
Public Shared Function ArraySelectMiddle(Of T) (
value As T(),
index As Integer,
length As Integer
) As T()
public:
generic<typename T>
static array<T>^ ArraySelectMiddle(
array<T>^ value,
int index,
int length
)
static member ArraySelectMiddle :
value : 'T[] *
index : int *
length : int -> 'T[]
参数
- value
- 类型:T
数组 - index
- 类型:SystemInt32
起始索引 - length
- 类型:SystemInt32
数据的长度
类型参数
- T
[缺少 "M:HslCommunication.BasicFramework.SoftBasic.ArraySelectMiddle``1(``0[],System.Int32,System.Int32)" 的 <typeparam name="T"/> 文档]
返回值
类型:
T新的数组值
异常 异常 | 条件 |
---|
IndexOutOfRangeException | |
示例 byte[] b1 = new byte[] { 0x13, 0xA6, 0x15, 0x85, 0x5B, 0x05, 0x12 };
byte[] buffer = SoftBasic.ArraySelectMiddle( b1, 2, 3 );
参见