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.
public class MyThread {
private int _data;
public MyThreadClass(int data) {
this._data = data;
}
public void Start() {
new Thread(new ThreadStart(ThreadProc)).Start();
}
private void ThreadProc() {
// use this._data in your thread;
}
}
new MyThread(55).Start();