BgApiDriver.BgApi.log C# (CSharp) 메소드

log() 보호된 메소드

All logging goes through this method for easy overriding.
protected log ( string msg ) : void
msg string The message to log.
리턴 void
        protected virtual void log(string msg)
        {
            Console.WriteLine(msg);
            System.Diagnostics.Debug.Print(msg);
        }
    }
BgApi