Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Change the Astring declaration to make it static:[code=csharp]public class Globals { public static string Astring = "Joe";}[/code]Then access it from your forms like so:[code=csharp]label5.Text = Globals.Astring;[/code]
Change the Astring declaration to make it static:
[code=csharp]public class Globals {
public static string Astring = "Joe";
}[/code]
Then access it from your forms like so:
[code=csharp]label5.Text = Globals.Astring;[/code]