Markdown 支持高亮的语言 示例: 123public static void main(String[] args){ System.out.println("Hello");} language key Apache apache AppleScript applescript Bash bash CMake cmake CoffeeScript coffeescr 2019-08-31 Common Common Markdown
CMD 常用命令 tracert12tracerttrace route 的缩写,路由跟踪。 ipconfig12345678ipconfig查看 IP 等网络配置ipconfig /all网络详细配置ipconfig /flushdns刷新 DNS 缓存 netsh wlan12345netsh wlan connect name="YanFaWIFI"连接指定 WIFInetsh wlan show int 2019-08-31 Common Common CMD
常用文件夹命名 PlatformsAndroidiOSMacPCWeb ProgramsAppleBaiduCommonCSharpDoneDotNetGoogleJavaLibraryLuaProgramsProjectsPythonSoftwareTodoUnityWorkSpace MiscAccountsAppDataBooksContactsDownloadsExtrasFilesGeneral 2019-08-31 Common Common Name
C#中@的三种用法 1. 忽略转义字符例如 1string fileName = "D:\\文本文件\\text.txt"; 使用@后 1string fileName = @"D:\文本文件\text.txt"; 2. 让字符串跨行例如 1234string strSQL = "SELECT * FROM HumanResources.Employee AS e" + " INNER JOIN Person. 2019-08-30 CSharp CSharp
using的三种用法 1. 引用命名空间1using System; 2. 为命名空间或类型创建别名12using IO = System.IO;using F = System.IO.File; 3. 使用using语句1234using (HashAlgorithm algorithm = HashAlgorithm.Create()) {} // 这个括号结束的时候自动自动调用algori 2019-08-30 CSharp CSharp