Category5.Profiler.AddToDebugOutput C# (CSharp) 메소드

AddToDebugOutput() 공개 정적인 메소드

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