المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : variable which is assing class value and array.sort problem



C# Programming
06-03-2009, 01:13 PM
i have a class and i assing this class value then

when i sorted this value or class value, both sorted

example code folowing :

int[] ggg=new int[5];
int[] ggg1=new int[5];
ggg = networks.layers[i].noron[j].sbaglanti;
ggg1 = ggg;
Array.Sort(ggg);

how can i solve this problem ?

regards