System.Threading.Thread.Thread.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start() => _runtimeThread.Start();
        public void Start(object parameter) => _runtimeThread.Start(parameter);

Same methods

Thread.Thread::Start ( object parameter ) : void

Usage Example

		public void EnableMultithreading () {
#if !UNITY_WEBGL
			if (graphUpdateThread == null || !graphUpdateThread.IsAlive) {
				graphUpdateThread = new Thread (ProcessGraphUpdatesAsync);
				graphUpdateThread.IsBackground = true;

				// Set the thread priority for graph updates
				// Unless compiling for windows store or windows phone which does not support it
#if !UNITY_WINRT
				graphUpdateThread.Priority = System.Threading.ThreadPriority.Lowest;
#endif
				graphUpdateThread.Start (this);
			}
#endif
		}
All Usage Examples Of System.Threading.Thread.Thread::Start