I’m new to c# but Im an advanced user in vb.net so I’m trying to bring my vb.net skills over to c# and one of the troubles I’m having is I dont know how to start a class for example
class Example {
public static void Main() {
textbox1.text = "Test";
}
}
What do you mean by start a class?
In C#, you have to Instantiate the class to use it further.