build.bat
来自「用VC开发的关于socket通讯的原代码,」· Batch 代码 · 共 9 行
BAT
9 行
@ REM Set command switch for building debug or retail (default is to build debug)
@ REM Type "build.bat -r" to build for retail
@ SET DEBUGSAMPLE=/debug+
@ IF "%1"=="-r" SET DEBUGSAMPLE=/debug-
@ IF "%1"=="-R" SET DEBUGSAMPLE=/debug-
csc.exe /t:winexe %DEBUGSAMPLE% /out:.\wintalk.exe WinTalk.cs
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?