根据指定的字节长度信息,获取到随机的字节信息
Obtain random byte information according to the specified byte length information
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static byte[] GetBytes(
this Random random,
int length
)
<ExtensionAttribute>
Public Shared Function GetBytes (
random As Random,
length As Integer
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ GetBytes(
Random^ random,
int length
)
[<ExtensionAttribute>]
static member GetBytes :
random : Random *
length : int -> byte[]
参数
- random
- 类型:SystemRandom
随机数对象 - length
- 类型:SystemInt32
字节的长度信息
返回值
类型:
Byte原始字节数组
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
Random 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
参见