G
Guest
hello
I have such problem:
int[] var1 = new int[10];
how to write properties for this variable? but propoerty must contain
independent table of int's stored in var1.
This statement is not sufficient:
public int[] Var1
{
get{return var1;}
set{var1=value;}
}
thanks
I have such problem:
int[] var1 = new int[10];
how to write properties for this variable? but propoerty must contain
independent table of int's stored in var1.
This statement is not sufficient:
public int[] Var1
{
get{return var1;}
set{var1=value;}
}
thanks