1
Answer

answer to gerrb's

Ask a question
kovan

kovan

20y
2.3k
1
the thread u started is locked i couldnt reply so here is your answer to use "global" variables in c# you can use static variables [code] public class blah { private blah() { } public static string strBlah; public static string strBlah2; } TO USE THEM u dont have to create instance of this class to use them just do blah.strBlah = "test"; [/code]

Answers (1)