摘要: ★解决步骤 ①打开hosts文件Windows => C:\Windows\System32\drivers\etc\hostsMacOS => 终端输入 sudo vim /private/etc/hosts(或者 在文件 => 前往 => 前往文件夹(快捷键:Command+Shift+G) = 阅读全文
posted @ 2021-03-10 09:59 Torylon 阅读(98) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq.Expressions; namespace Guma.StudyNotes.Expressi 阅读全文
posted @ 2021-03-01 10:31 Torylon 阅读(119) 评论(0) 推荐(0) 编辑
摘要: DBCC CHECKIDENT('TABLE_NAME',RESEED,0); 阅读全文
posted @ 2021-02-24 08:21 Torylon 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 卸载已安装版本 npm uninstall node-sass安装 npm install node-sass@4.14.1 阅读全文
posted @ 2020-12-30 15:38 Torylon 阅读(60) 评论(0) 推荐(0) 编辑
摘要: Module build failed: Error: Missing binding E:\Works\Demo Code\OwnProject\Guma.Studio\node_modules\node-sass\vendor\win32-x64-83\binding.nodeNode Sass 阅读全文
posted @ 2020-12-09 15:59 Torylon 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 名称:Attribute / 特性 关键理解:特性声明是没有作用的,只用用反射查找的时候特性才会有作用(也就是说特性必须要结合反射来用,MVC等一些框架支持了特性的反射调用) 特性的本质:特性是一个类,可以用来标记元素。编译时生成到 Matadata 里面,平时不影响程序的运行,除非主动用反射去查找 阅读全文
posted @ 2018-03-25 23:07 Torylon 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// 名称:Reflection/反射 3 /// 场景:有一个dll,通过反射我们来获取信息,并使用 4 /// </summary> 1 /// <summary> 2 /// 反射使用 3 /// 前提条件: 4 /// ①我们有一个 dll: langu 阅读全文
posted @ 2018-03-25 20:59 Torylon 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// Name: Generic/泛型 3 /// .NET Framework 2.O 时CLR升级的 4 /// 泛型使用:泛型接口/泛型类/泛型方法/泛型委托/泛型 5 /// 约束:class引用类型约束/struct值类型约束/new()无参数构造函数 阅读全文
posted @ 2018-03-25 19:41 Torylon 阅读(114) 评论(0) 推荐(0) 编辑