📜  C# 表 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:42.848000             🧑  作者: Mango

代码示例4
int[] tableName = new int[4]; // Create a int table of 4 entity.
int[] tableName2 = {10, 20, 30, 40}; // Create a int table with undefined number of entity, this one gonna have 4 : (10, 20, 30, 40).

tableName2[0] = 10;
tableName2[1] = 20;