Suppose I have a file ABC.CS in that file I have a class ABC as below and method Test():
public class ABC
{
public static void Test()
{
int a=10;
int b=11;
int c=12;
//many many variables
}
}
I want to access a, b ... etc in another method of another class of another file say
- File :
XYZ.cs - Class:
XYZ - Method:
MyMethos().
Note: Variable may be any of type, like int, float, and DataTable etc
Updated
Seems like people ignored static keyword, please give working example
How can I do this ?
Thanks.