HslExtensionRemoveLastT 方法 (T, Int32) |
将一个数组的后面指定位数移除,返回新的一个数组
Removes the specified number of digits after a array, returning a new array
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static T[] RemoveLast<T>(
this T[] value,
int length
)
<ExtensionAttribute>
Public Shared Function RemoveLast(Of T) (
value As T(),
length As Integer
) As T()
public:
[ExtensionAttribute]
generic<typename T>
static array<T>^ RemoveLast(
array<T>^ value,
int length
)
[<ExtensionAttribute>]
static member RemoveLast :
value : 'T[] *
length : int -> 'T[]
参数
- value
- 类型:T
数组 - length
- 类型:SystemInt32
等待移除的长度
类型参数
- T
[缺少 "M:HslCommunication.HslExtension.RemoveLast``1(``0[],System.Int32)" 的 <typeparam name="T"/> 文档]
返回值
类型:
T新的数组
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
异常 示例 byte[] b1 = new byte[] { 0x13, 0xA6, 0x15, 0x85, 0x5B, 0x05, 0x12 };
byte[] buffer = SoftBasic.ArrayRemoveLast( b1, 4 );
参见