Category5.Profiler.AddToDebugOutput C# (CSharp) Method

AddToDebugOutput() public static method

public static AddToDebugOutput ( string text ) : void
text string
return void
        public static void AddToDebugOutput(string text)
        {
            if (enableProfiling)
            {
                DebugOutput = DebugOutput + text;
            }
        }