FarseerPhysics.Common.Stopwatch.StartNew C# (CSharp) Method

StartNew() public static method

Creates a new instance of the class and starts the watch immediately.
public static StartNew ( ) : Stopwatch
return Stopwatch
        public static Stopwatch StartNew()
        {
            Stopwatch sw = new Stopwatch();
            sw.Start();
            return sw;
        }