实例化一个对象,需要指定数组的最大长度信息,以及是否从最后一个添加,之前的值为类型默认值
            To instantiate an object, you need to specify the maximum length of the array and whether to add it from the last value before the type default
            
 
        命名空间: 
     HslCommunication.BasicFramework
        程序集:
     HslCommunication (在 HslCommunication.dll 中) 版本:12.5.1.0 (12.5.1.0)
 语法
语法public SharpList(
	int count,
	bool appendLast = false
)
Public Sub New ( 
	count As Integer,
	Optional appendLast As Boolean = false
)
public:
SharpList(
	int count, 
	bool appendLast = false
)
new : 
        count : int * 
        ?appendLast : bool 
(* Defaults:
        let _appendLast = defaultArg appendLast false
*)
-> SharpList参数
- count
- 类型:SystemInt32
 数组的固定长度信息
- appendLast (Optional)
- 类型:SystemBoolean
 是否从最后一个索引开始添加
 参见
参见