1 回答

TA貢獻1802條經驗 獲得超6個贊
就是 陣列的意思
MICROSOFT提交給標準化組織ECMA的規范
可以參考
ECMA-334 --定義了C#編程語言的語法和語義
ECMA-335--定義了許多.NET平臺的細節,統稱CIL.
?
[Example:
.method int32 M1( int32 marshal(int32), bool[] marshal(bool[5]) )
Method M1 takes two arguments: an int32, and an array of 5 bools.
.method int32 M2( int32 marshal(int32), bool[] marshal(bool[+1]) )
Method M2 takes two arguments: an int32, and an array of bools: the number of elements in that array is
given by the value of the first parameter.
.method int32 M3( int32 marshal(int32), bool[] marshal(bool[7+1]) )
Method M3 takes two arguments: an int32, and an array of bools: the number of elements in that array is
given as 7 plus the value of the first parameter. end example]
- 1 回答
- 0 關注
- 498 瀏覽
添加回答
舉報