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.
class foo
{
private string m_sFoo = String.Empty;
public string Foo
{ get { return this.m_sFoo; } set { this.m_sFoo = value; } }
public string SayHello
{
string _sHello = "Hello " + m_sFoo;
}
}