我使用此代码将一个2D数组复制到另一个2D数组:
Array.Copy(teamPerformance, 0,tempPerformance,0, teamPerformance.Length);
但是,当我更改某些数据时,tempPerformance这些更改也适用于teamPerformance. 我应该怎么做来控制它?
tempPerformance
teamPerformance
c# arrays multidimensional-array
arrays ×1
c# ×1
multidimensional-array ×1