idTech4.idConsole.DeveloperWriteLine C# (CSharp) Метод

DeveloperWriteLine() публичный статический Метод

Prints message that only shows up if the "developer" cvar is set.
public static DeveloperWriteLine ( string format ) : void
format string
Результат void
		public static void DeveloperWriteLine(string format, params object[] args)
		{
			DeveloperWrite(format + '\n', args);
		}