HslExtensionReverseNewT 方法 |
获取当前数组的倒序数组,这是一个新的实例,不改变原来的数组值
Get the reversed array of the current byte array, this is a new instance, does not change the original array value
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static T[] ReverseNew<T>(
this T[] value
)
<ExtensionAttribute>
Public Shared Function ReverseNew(Of T) (
value As T()
) As T()
public:
[ExtensionAttribute]
generic<typename T>
static array<T>^ ReverseNew(
array<T>^ value
)
[<ExtensionAttribute>]
static member ReverseNew :
value : 'T[] -> 'T[]
参数
- value
- 类型:T
输入的原始数组
类型参数
- T
[缺少 "M:HslCommunication.HslExtension.ReverseNew``1(``0[])" 的 <typeparam name="T"/> 文档]
返回值
类型:
T反转之后的数组信息
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
参见