How can I call a variable from a public class to another public class in C#. I have:
public class Variables
{
static string name = "";
}
I need to call it from:
public class Main
{
}
Thanks for help in advance.
Working in a Console App.