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.
It's never to late to learn Kudo's for taking on a new language.I'm an old guy (62) and techno talk is babble to me.
class Foo
{
public string Bar {get;set;}
}
class Foo
{
private string bar;
public void SetBar(string s)
{
bar = s;
}
public string GetBar()
{
return bar;
}
}