Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在银光中申请。在那个应用程序中,我使用的是三维线阵列,但我不知道如何初始化它?我有数组作为
Line[,,] line = new Line[10,20,30];
我如何用新行初始化每个值?请帮助我。提前致谢,
这将line.Initialize()使用 Line 的默认构造函数初始化数组中的每个元素。
line.Initialize()
干杯! 维诺德