1,Console.WriteLine()
是输出到控制台程序(console application
)的命令
Debug.Log()
或print()
方法 3,print()
是Debug.log()
的别名,其他的还有Debug.LogWarning()
等 再说一点,网上很多人问为什么WinForm程序中Console.WriteLine
没有输出,这是对的,WinForm是图形化程序,在非命令行程序中,所有的Console.WriteLine
都不会输出并且不会报错。