你好,让我用非常简单的解释向你展示这个问题。
我有这个;
int[] numbers1= { 1, 2, 3 };
我需要这个;
int[] numbers2= { 1,1,1, 2,2,2, 3,3,3 };
我如何复制我的值然后在另一个列表中使用它们?
c#
c# ×1