i need to have a global variable that is non static that i can increment in the entire project in c# code example
Example: how to create public variable in c#
public static class Myvariables{
public static int x = 1;
}
public static class Myvariables{
public static int x = 1;
}