├── .gitattributes ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | If you have any questions about My_Note, you can create issues. 2 | 3 | # My Note 4 | [❤CSharpLearn](https://github.com/zLulus/CSharpLearn) 5 | 6 | [📗技术路线](#技术路线) 7 | 8 | [📘.NET](#NET) 9 | 10 | [📘ML .NET](#ml-net) 11 | 12 | [WCF](#wcf) 13 | 14 | [IIS](#iis) 15 | 16 | [ASP .NET](#asp-net) 17 | 18 | [📘ASP .NET Core](#asp-net-core) 19 | 20 | [javascript && jQuery](#javascript--jquery) 21 | 22 | [包管理](#包管理) 23 | 24 | [项目管理工具](#项目管理工具) 25 | 26 | [AngularJS (>ω<)](#angularjs) 27 | 28 | [Angular](#angular) 29 | 30 | [TypeScript](#typescript) 31 | 32 | [ABP框架 (・o・)](#abp) 33 | 34 | [html](#html) 35 | 36 | [css](#css) 37 | 38 | [📗sql](#sql) 39 | 40 | [📗数据库](#数据库) 41 | 42 | [EF](#ef) 43 | 44 | [EF Core](#ef-core) 45 | 46 | [📗数据结构](#数据结构) 47 | 48 | [缓存](#缓存) 49 | 50 | [搜索引擎](#搜索引擎) 51 | 52 | [操作系统](#操作系统) 53 | 54 | [📘WPF ٩(๑òωó๑)۶](#wpf) 55 | 56 | [MAUI](#maui) 57 | 58 | [Blazor](#blazor) 59 | 60 | [UWP](#uwp) 61 | 62 | [Windows Service](#windows-service) 63 | 64 | [设计模式](#设计模式) 65 | 66 | [网络](#网络) 67 | 68 | [Docker](#Docker) 69 | 70 | [IDE](#IDE) 71 | 72 | [GIS](#gis) 73 | 74 | [Xamarin](#xamarin) 75 | 76 | [Unity](#unity) 77 | 78 | [微信](#微信) 79 | 80 | [📗计算机基本知识](#计算机基本知识) 81 | 82 | [机器学习 Ծ‸Ծ](#机器学习) 83 | 84 | [learning how to learn (。・ω・。)ノ♡](#learning-how-to-learn) 85 | 86 | [拥有一颗产品心的程序媛 ψ(`∇´)ψ](#拥有一颗产品心的程序媛) 87 | 88 | [linux](#linux) 89 | 90 | [其他](#其他) 91 | 92 | # 技术路线 93 | 94 | [后端开发技术路线图](https://github.com/zLulus/My_Note/wiki/%E5%90%8E%E7%AB%AF%E5%BC%80%E5%8F%91%E6%8A%80%E6%9C%AF%E8%B7%AF%E7%BA%BF%E5%9B%BE) 95 | 96 | [DevOps技术路线图](https://github.com/zLulus/My_Note/wiki/DevOps%E6%8A%80%E6%9C%AF%E8%B7%AF%E7%BA%BF%E5%9B%BE) 97 | 98 | [《软件开发者路线图:从学徒到高手》模式总结](https://github.com/zLulus/My_Note/wiki/%E3%80%8A%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E8%80%85%E8%B7%AF%E7%BA%BF%E5%9B%BE%EF%BC%9A%E4%BB%8E%E5%AD%A6%E5%BE%92%E5%88%B0%E9%AB%98%E6%89%8B%E3%80%8B%E6%A8%A1%E5%BC%8F%E6%80%BB%E7%BB%93) 99 | 100 | [解决问题的思路](https://github.com/zLulus/My_Note/wiki/%E8%A7%A3%E5%86%B3%E9%97%AE%E9%A2%98%E7%9A%84%E6%80%9D%E8%B7%AF) 101 | 102 | [解决问题的思路(举例:网站的某个页面无法正常显示)](https://github.com/zLulus/My_Note/wiki/%E8%A7%A3%E5%86%B3%E9%97%AE%E9%A2%98%E7%9A%84%E6%80%9D%E8%B7%AF%EF%BC%88%E4%B8%BE%E4%BE%8B%EF%BC%9A%E7%BD%91%E7%AB%99%E7%9A%84%E6%9F%90%E4%B8%AA%E9%A1%B5%E9%9D%A2%E6%97%A0%E6%B3%95%E6%AD%A3%E5%B8%B8%E6%98%BE%E7%A4%BA%EF%BC%89) 103 | 104 | [解决问题的思路(举例:windows服务器环境问题)](https://github.com/zLulus/My_Note/wiki/%E8%A7%A3%E5%86%B3%E9%97%AE%E9%A2%98%E7%9A%84%E6%80%9D%E8%B7%AF%EF%BC%88%E4%B8%BE%E4%BE%8B%EF%BC%9Awindows%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%8E%AF%E5%A2%83%E9%97%AE%E9%A2%98%EF%BC%89) 105 | 106 | [定律法则](https://github.com/zLulus/My_Note/wiki/%E5%AE%9A%E5%BE%8B%E6%B3%95%E5%88%99) 107 | 108 | ## 文章收藏 109 | 110 | [.NET 全栈开发工程师学习路径](https://www.cnblogs.com/edisonchou/p/the_way_to_fullstack_dotnet_programmer.html) 111 | 112 | [.NET Core 微服务架构学习与实践系列文章目录](https://www.cnblogs.com/edisonchou/p/dotnetcore_microservice_foundation_blogs_index_final.html) 113 | 114 | [墙裂推荐:这可能是CAP理论的最好解释](https://mp.weixin.qq.com/s/ODHBl38zpPCjn6f637-AEA) 115 | 116 | [「代码家」的学习过程和学习经验分享](https://github.com/zLulus/My_Note/wiki/%E3%80%8C%E4%BB%A3%E7%A0%81%E5%AE%B6%E3%80%8D%E7%9A%84%E5%AD%A6%E4%B9%A0%E8%BF%87%E7%A8%8B%E5%92%8C%E5%AD%A6%E4%B9%A0%E7%BB%8F%E9%AA%8C%E5%88%86%E4%BA%AB) 117 | 118 | [PostgreSQL vs MySQL: The Critical Differences](https://www.xplenty.com/blog/postgresql-vs-mysql-which-one-is-better-for-your-use-case/) 119 | 120 | [RESTful API如何进行版本控制](https://mp.weixin.qq.com/s/V9OhqZOBqdBiuWzGuhTWbw) 121 | 122 | [外部排序(归并排序)](https://www.cnblogs.com/guozepingboke/p/10750691.html) 123 | 124 | [微软MVP精选 | dotnet 读 WPF 源代码笔记 XAML 创建对象的方法](https://mp.weixin.qq.com/s/hLkEhzcJrX3jJDPeSmv1XA) 125 | 126 | [《软件架构》缓存技术](http://ifeve.com/caching-techniques/) 127 | 128 | [在 C# 中生成代码的四种方式——包括.NET 5中的Source Generators](https://mp.weixin.qq.com/s/I3uuiWwtJwBnsRchPlYx1g) 129 | 130 | [Distributed data(分布式数据)](https://docs.microsoft.com/en-us/dotnet/architecture/cloud-native/distributed-data?WT.mc_id=DT-MVP-5003010) 131 | 132 | [.NET Core微服务之基于Ocelot+IdentityServer实现统一验证与授权](https://www.cnblogs.com/edisonchou/p/integration_authentication-authorization_service_foundation.html) 133 | 134 | [体系结构原则](https://docs.microsoft.com/zh-cn/dotnet/architecture/modern-web-apps-azure/architectural-principles?WT.mc_id=DT-MVP-5003010) 135 | 136 | # .NET 137 | 138 | [IQueryable与IEnumerable(转载)](https://github.com/zLulus/My_Note/wiki/IQueryable%E4%B8%8EIEnumerable%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 139 | 140 | [C#调用python](https://github.com/zLulus/My_Note/wiki/C%23%E8%B0%83%E7%94%A8python) 141 | 142 | [从Header中获得信息](https://github.com/zLulus/My_Note/wiki/%E4%BB%8EHeader%E4%B8%AD%E8%8E%B7%E5%BE%97%E4%BF%A1%E6%81%AF) 143 | 144 | [模拟请求(模拟header/gzip解压/泛型)](https://github.com/zLulus/My_Note/wiki/%E6%A8%A1%E6%8B%9F%E8%AF%B7%E6%B1%82(%E6%A8%A1%E6%8B%9Fheader-gzip%E8%A7%A3%E5%8E%8B-%E6%B3%9B%E5%9E%8B)) 145 | 146 | [C#控制台关闭之前做一些操作](https://github.com/zLulus/My_Note/wiki/C%23%E6%8E%A7%E5%88%B6%E5%8F%B0%E5%85%B3%E9%97%AD%E4%B9%8B%E5%89%8D%E5%81%9A%E4%B8%80%E4%BA%9B%E6%93%8D%E4%BD%9C) 147 | 148 | [C# 元组、匿名对象、ref&out](https://github.com/zLulus/My_Note/wiki/C%23-%E5%85%83%E7%BB%84%E3%80%81%E5%8C%BF%E5%90%8D%E5%AF%B9%E8%B1%A1%E3%80%81ref&out) 149 | 150 | [linq to entity GroupBy多个字段](https://github.com/zLulus/My_Note/wiki/linq-to-entity-GroupBy%E5%A4%9A%E4%B8%AA%E5%AD%97%E6%AE%B5) 151 | 152 | [nuget包发布](https://github.com/zLulus/My_Note/wiki/nuget%E5%8C%85%E5%8F%91%E5%B8%83) 153 | 154 | [Stream转Byte数组](https://github.com/zLulus/My_Note/wiki/Stream%E8%BD%ACByte%E6%95%B0%E7%BB%84) 155 | 156 | [C#后台线程与前台线程(Thread IsBackground)](https://github.com/zLulus/My_Note/wiki/C%23%E5%90%8E%E5%8F%B0%E7%BA%BF%E7%A8%8B%E4%B8%8E%E5%89%8D%E5%8F%B0%E7%BA%BF%E7%A8%8B(Thread-IsBackground)) 157 | 158 | [Microsoft.AspNet.SignalR实现弹幕(即时通讯)](https://github.com/zLulus/My_Note/wiki/Microsoft.AspNet.SignalR%E5%AE%9E%E7%8E%B0%E5%BC%B9%E5%B9%95(%E5%8D%B3%E6%97%B6%E9%80%9A%E8%AE%AF)) 159 | 160 | [C#调用JS](https://github.com/zLulus/My_Note/wiki/C%23%E8%B0%83%E7%94%A8JS) 161 | 162 | [静态方法 && 非静态方法](https://github.com/zLulus/My_Note/wiki/%E9%9D%99%E6%80%81%E6%96%B9%E6%B3%95-&&-%E9%9D%9E%E9%9D%99%E6%80%81%E6%96%B9%E6%B3%95) 163 | 164 | [httpclient POST请求(urlencoded)](https://github.com/zLulus/My_Note/wiki/httpclient-POST%E8%AF%B7%E6%B1%82(urlencoded)) 165 | 166 | [System.Reflection.Emit](https://github.com/zLulus/My_Note/wiki/System.Reflection.Emit) 167 | 168 | [.net加壳脱壳](https://github.com/zLulus/My_Note/wiki/.net%E5%8A%A0%E5%A3%B3%E8%84%B1%E5%A3%B3) 169 | 170 | [linq to entity DistinctBy && DefaultIfEmpty](https://github.com/zLulus/My_Note/wiki/linq-to-entity-DistinctBy-&&-DefaultIfEmpty) 171 | 172 | [OWIN](https://github.com/zLulus/My_Note/wiki/OWIN) 173 | 174 | [发送邮件](https://github.com/zLulus/My_Note/wiki/%E5%8F%91%E9%80%81%E9%82%AE%E4%BB%B6) 175 | 176 | [协程](https://github.com/zLulus/My_Note/wiki/%E5%8D%8F%E7%A8%8B) 177 | 178 | [Swagger](https://github.com/zLulus/My_Note/wiki/Swagger) 179 | 180 | [.NET Core .NET 6 为Swagger添加注释](https://github.com/zLulus/My_Note/wiki/.NET-Core-.NET-6-%E4%B8%BASwagger%E6%B7%BB%E5%8A%A0%E6%B3%A8%E9%87%8A) 181 | 182 | [.net group by 时间段(年月日)](https://github.com/zLulus/My_Note/wiki/.net-group-by-%E6%97%B6%E9%97%B4%E6%AE%B5%EF%BC%88%E5%B9%B4%E6%9C%88%E6%97%A5%EF%BC%89) 183 | 184 | [nswag](https://github.com/zLulus/My_Note/wiki/nswag) 185 | 186 | [Coding优化技巧](https://github.com/zLulus/My_Note/wiki/Coding%E4%BC%98%E5%8C%96%E6%8A%80%E5%B7%A7) 187 | 188 | [C#中数组、ArrayList和List三者的区别](https://github.com/zLulus/My_Note/wiki/C%23%E4%B8%AD%E6%95%B0%E7%BB%84%E3%80%81ArrayList%E5%92%8CList%E4%B8%89%E8%80%85%E7%9A%84%E5%8C%BA%E5%88%AB) 189 | 190 | [byte[] && 二进制 && 十进制 && 十六进制](https://github.com/zLulus/My_Note/wiki/byte%5B%5D-&&-%E4%BA%8C%E8%BF%9B%E5%88%B6-&&-%E5%8D%81%E8%BF%9B%E5%88%B6-&&-%E5%8D%81%E5%85%AD%E8%BF%9B%E5%88%B6) 191 | 192 | [设置HttpClient的授权Header](https://github.com/zLulus/My_Note/wiki/%E8%AE%BE%E7%BD%AEHttpClient%E7%9A%84%E6%8E%88%E6%9D%83Header) 193 | 194 | [递归和迭代](https://github.com/zLulus/My_Note/wiki/%E9%80%92%E5%BD%92%E5%92%8C%E8%BF%AD%E4%BB%A3) 195 | 196 | [使用Dotfuscator混淆保护应用程序](https://github.com/zLulus/My_Note/wiki/%E4%BD%BF%E7%94%A8Dotfuscator%E6%B7%B7%E6%B7%86%E4%BF%9D%E6%8A%A4%E5%BA%94%E7%94%A8%E7%A8%8B%E5%BA%8F) 197 | 198 | [String与StringBuilder](https://github.com/zLulus/My_Note/wiki/String%E4%B8%8EStringBuilder) 199 | 200 | [浅拷贝和深拷贝(Clone)](https://github.com/zLulus/My_Note/wiki/%E6%B5%85%E6%8B%B7%E8%B4%9D%E5%92%8C%E6%B7%B1%E6%8B%B7%E8%B4%9D(Clone)) 201 | 202 | [readonly与const](https://github.com/zLulus/My_Note/wiki/readonly%E4%B8%8Econst) 203 | 204 | [层与层之间解耦思路](https://github.com/zLulus/My_Note/wiki/%E5%B1%82%E4%B8%8E%E5%B1%82%E4%B9%8B%E9%97%B4%E8%A7%A3%E8%80%A6%E6%80%9D%E8%B7%AF) 205 | 206 | [.NET和C#](https://github.com/zLulus/My_Note/wiki/.NET%E5%92%8CC%23) 207 | 208 | [Object Equals && GetHashCode](https://github.com/zLulus/My_Note/wiki/Object-Equals-&&-GetHashCode) 209 | 210 | [IFormattable和IFormatProvider](https://github.com/zLulus/My_Note/wiki/IFormattable%E5%92%8CIFormatProvider) 211 | 212 | [枚举获得Description扩展方法](https://github.com/zLulus/My_Note/wiki/%E6%9E%9A%E4%B8%BE%E8%8E%B7%E5%BE%97Description%E6%89%A9%E5%B1%95%E6%96%B9%E6%B3%95) 213 | 214 | [装箱和拆箱](https://github.com/zLulus/My_Note/wiki/%E8%A3%85%E7%AE%B1%E5%92%8C%E6%8B%86%E7%AE%B1) 215 | 216 | [序列化与反序列化](https://github.com/zLulus/My_Note/wiki/%E5%BA%8F%E5%88%97%E5%8C%96%E4%B8%8E%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96) 217 | 218 | [C# 索引器](https://github.com/zLulus/My_Note/wiki/C%23-%E7%B4%A2%E5%BC%95%E5%99%A8) 219 | 220 | [C# dynamic & var](https://github.com/zLulus/My_Note/wiki/C%23-dynamic-&-var) 221 | 222 | [读取mdb文件](https://github.com/zLulus/My_Note/wiki/%E8%AF%BB%E5%8F%96mdb%E6%96%87%E4%BB%B6) 223 | 224 | [接口和抽象类](https://github.com/zLulus/My_Note/wiki/%E6%8E%A5%E5%8F%A3%E5%92%8C%E6%8A%BD%E8%B1%A1%E7%B1%BB) 225 | 226 | [EXE和DLL之间的区间](https://github.com/zLulus/My_Note/wiki/EXE%E5%92%8CDLL%E4%B9%8B%E9%97%B4%E7%9A%84%E5%8C%BA%E9%97%B4) 227 | 228 | [强类型和弱类型](https://github.com/zLulus/My_Note/wiki/%E5%BC%BA%E7%B1%BB%E5%9E%8B%E5%92%8C%E5%BC%B1%E7%B1%BB%E5%9E%8B) 229 | 230 | [前期绑定(early-binding)和后期绑定(late-binding)的区别](https://github.com/zLulus/My_Note/wiki/%E5%89%8D%E6%9C%9F%E7%BB%91%E5%AE%9A%EF%BC%88early-binding%EF%BC%89%E5%92%8C%E5%90%8E%E6%9C%9F%E7%BB%91%E5%AE%9A%EF%BC%88late-binding%EF%BC%89%E7%9A%84%E5%8C%BA%E5%88%AB) 231 | 232 | [CTS、CLS 和CLR](https://github.com/zLulus/My_Note/wiki/CTS%E3%80%81CLS-%E5%92%8CCLR) 233 | 234 | [JIT和NGEN](https://github.com/zLulus/My_Note/wiki/JIT%E5%92%8CNGEN) 235 | 236 | [C#中重写、重载和隐藏的概念](https://github.com/zLulus/My_Note/wiki/C%23%E4%B8%AD%E9%87%8D%E5%86%99%E3%80%81%E9%87%8D%E8%BD%BD%E5%92%8C%E9%9A%90%E8%97%8F%E7%9A%84%E6%A6%82%E5%BF%B5) 237 | 238 | [sealed](https://github.com/zLulus/My_Note/wiki/sealed) 239 | 240 | [树状结构的部分查询](https://github.com/zLulus/My_Note/wiki/%E6%A0%91%E7%8A%B6%E7%BB%93%E6%9E%84%E7%9A%84%E9%83%A8%E5%88%86%E6%9F%A5%E8%AF%A2) 241 | 242 | [索引器&集合](https://github.com/zLulus/My_Note/wiki/%E7%B4%A2%E5%BC%95%E5%99%A8&%E9%9B%86%E5%90%88) 243 | 244 | [xml文件读写](https://github.com/zLulus/My_Note/wiki/xml%E6%96%87%E4%BB%B6%E8%AF%BB%E5%86%99) 245 | 246 | [FTP自建服务器与C#访问](https://github.com/zLulus/My_Note/wiki/FTP%E8%87%AA%E5%BB%BA%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8EC%23%E8%AE%BF%E9%97%AE) 247 | 248 | [C# 字符串公式计算](https://github.com/zLulus/My_Note/wiki/C%23-%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%85%AC%E5%BC%8F%E8%AE%A1%E7%AE%97) 249 | 250 | [The request was aborted: Could not create SSL TLS secure channel.](https://github.com/zLulus/My_Note/wiki/The-request-was-aborted:-Could-not-create-SSL-TLS-secure-channel.) 251 | 252 | [C# 设置VPN](https://github.com/zLulus/My_Note/wiki/C%23-%E8%AE%BE%E7%BD%AEVPN) 253 | 254 | [.NET程序调试的几种思路](https://github.com/zLulus/My_Note/wiki/.NET%E7%A8%8B%E5%BA%8F%E8%B0%83%E8%AF%95%E7%9A%84%E5%87%A0%E7%A7%8D%E6%80%9D%E8%B7%AF) 255 | 256 | [C# Windows重启程序](https://github.com/zLulus/My_Note/wiki/C%23-Windows%E9%87%8D%E5%90%AF%E7%A8%8B%E5%BA%8F) 257 | 258 | [ffmpeg多媒体框架](https://github.com/zLulus/My_Note/wiki/ffmpeg%E5%A4%9A%E5%AA%92%E4%BD%93%E6%A1%86%E6%9E%B6) 259 | 260 | [HttpWebResponse ReadWriteTimeout和Timeout](https://github.com/zLulus/My_Note/wiki/HttpWebResponse-ReadWriteTimeout%E5%92%8CTimeout) 261 | 262 | [使用代码生成dump文件](https://github.com/zLulus/My_Note/wiki/%E4%BD%BF%E7%94%A8%E4%BB%A3%E7%A0%81%E7%94%9F%E6%88%90dump%E6%96%87%E4%BB%B6) 263 | 264 | [C# Task.Delay() 和 Thread.Sleep() 区别](https://github.com/zLulus/My_Note/wiki/C%23-Task.Delay()-%E5%92%8C-Thread.Sleep()-%E5%8C%BA%E5%88%AB) 265 | 266 | [计算机性能监测](https://github.com/zLulus/My_Note/wiki/%E8%AE%A1%E7%AE%97%E6%9C%BA%E6%80%A7%E8%83%BD%E7%9B%91%E6%B5%8B) 267 | 268 | [Bitmap使用注意事项](https://github.com/zLulus/My_Note/wiki/Bitmap%E4%BD%BF%E7%94%A8%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9) 269 | 270 | [C# 删除正在使用的文件](https://github.com/zLulus/My_Note/wiki/C%23-%E5%88%A0%E9%99%A4%E6%AD%A3%E5%9C%A8%E4%BD%BF%E7%94%A8%E7%9A%84%E6%96%87%E4%BB%B6) 271 | 272 | [C# WindowFromPoint在64位程序中无效](https://github.com/zLulus/My_Note/wiki/C%23-WindowFromPoint%E5%9C%A864%E4%BD%8D%E7%A8%8B%E5%BA%8F%E4%B8%AD%E6%97%A0%E6%95%88) 273 | 274 | [C# 报错:未通过等待任务或访问任务的 Exception 属性观察到任务的异常。因此,终结器线程重新引发了未观察到的异常。](https://github.com/zLulus/My_Note/wiki/C%23-%E6%8A%A5%E9%94%99%EF%BC%9A%E6%9C%AA%E9%80%9A%E8%BF%87%E7%AD%89%E5%BE%85%E4%BB%BB%E5%8A%A1%E6%88%96%E8%AE%BF%E9%97%AE%E4%BB%BB%E5%8A%A1%E7%9A%84-Exception-%E5%B1%9E%E6%80%A7%E8%A7%82%E5%AF%9F%E5%88%B0%E4%BB%BB%E5%8A%A1%E7%9A%84%E5%BC%82%E5%B8%B8%E3%80%82%E5%9B%A0%E6%AD%A4%EF%BC%8C%E7%BB%88%E7%BB%93%E5%99%A8%E7%BA%BF%E7%A8%8B%E9%87%8D%E6%96%B0%E5%BC%95%E5%8F%91%E4%BA%86%E6%9C%AA%E8%A7%82%E5%AF%9F%E5%88%B0%E7%9A%84%E5%BC%82%E5%B8%B8%E3%80%82) 275 | 276 | [Flags特性](https://github.com/zLulus/My_Note/wiki/Flags%E7%89%B9%E6%80%A7) 277 | 278 | [转换枚举为字典](https://github.com/zLulus/My_Note/wiki/%E8%BD%AC%E6%8D%A2%E6%9E%9A%E4%B8%BE%E4%B8%BA%E5%AD%97%E5%85%B8) 279 | 280 | [获得调用者信息](https://github.com/zLulus/My_Note/wiki/%E8%8E%B7%E5%BE%97%E8%B0%83%E7%94%A8%E8%80%85%E4%BF%A1%E6%81%AF) 281 | 282 | [switch语法](https://github.com/zLulus/My_Note/wiki/switch%E8%AF%AD%E6%B3%95) 283 | 284 | [C# 远程连接Linux执行命令](https://github.com/zLulus/My_Note/wiki/C%23-%E8%BF%9C%E7%A8%8B%E8%BF%9E%E6%8E%A5Linux%E6%89%A7%E8%A1%8C%E5%91%BD%E4%BB%A4) 285 | 286 | [表达式树Expression](https://github.com/zLulus/My_Note/wiki/%E8%A1%A8%E8%BE%BE%E5%BC%8F%E6%A0%91Expression) 287 | 288 | [C# 实现自定义表达式](https://github.com/zLulus/My_Note/wiki/C%23-%E5%AE%9E%E7%8E%B0%E8%87%AA%E5%AE%9A%E4%B9%89%E8%A1%A8%E8%BE%BE%E5%BC%8F) 289 | 290 | [监控文件变化](https://github.com/zLulus/My_Note/wiki/%E7%9B%91%E6%8E%A7%E6%96%87%E4%BB%B6%E5%8F%98%E5%8C%96) 291 | 292 | [XML转Json 设置指定节点为数组](https://github.com/zLulus/My_Note/wiki/XML%E8%BD%ACJson-%E8%AE%BE%E7%BD%AE%E6%8C%87%E5%AE%9A%E8%8A%82%E7%82%B9%E4%B8%BA%E6%95%B0%E7%BB%84) 293 | 294 | [使用Lazy使ConcurrentDictionary的GetOrAdd方法线程安全](https://github.com/zLulus/My_Note/wiki/%E4%BD%BF%E7%94%A8Lazy%E4%BD%BFConcurrentDictionary%E7%9A%84GetOrAdd%E6%96%B9%E6%B3%95%E7%BA%BF%E7%A8%8B%E5%AE%89%E5%85%A8) 295 | 296 | [C# 动态替换方法](https://github.com/zLulus/My_Note/wiki/C%23-%E5%8A%A8%E6%80%81%E6%9B%BF%E6%8D%A2%E6%96%B9%E6%B3%95) 297 | 298 | [C# 向SqlCommand添加参数列表](https://github.com/zLulus/My_Note/wiki/C%23-%E5%90%91SqlCommand%E6%B7%BB%E5%8A%A0%E5%8F%82%E6%95%B0%E5%88%97%E8%A1%A8) 299 | 300 | [C# 计算两个时间相差的年份和月份](https://github.com/zLulus/My_Note/wiki/C%23-%E8%AE%A1%E7%AE%97%E4%B8%A4%E4%B8%AA%E6%97%B6%E9%97%B4%E7%9B%B8%E5%B7%AE%E7%9A%84%E5%B9%B4%E4%BB%BD%E5%92%8C%E6%9C%88%E4%BB%BD) 301 | 302 | [通过OpenAPI和Visual Studio生成客户端代码](https://github.com/zLulus/My_Note/wiki/%E9%80%9A%E8%BF%87OpenAPI%E5%92%8CVisual-Studio%E7%94%9F%E6%88%90%E5%AE%A2%E6%88%B7%E7%AB%AF%E4%BB%A3%E7%A0%81) 303 | 304 | [C# 友元程序集](https://github.com/zLulus/My_Note/wiki/C%23-%E5%8F%8B%E5%85%83%E7%A8%8B%E5%BA%8F%E9%9B%86) 305 | 306 | [.NET 6 & Newtonsoft.Json 自定义JsonConverter 返回2位小数](https://github.com/zLulus/My_Note/wiki/.NET-6-&-Newtonsoft.Json-%E8%87%AA%E5%AE%9A%E4%B9%89JsonConverter-%E8%BF%94%E5%9B%9E2%E4%BD%8D%E5%B0%8F%E6%95%B0) 307 | 308 | ## 单元测试 309 | [.NET 单元测试](https://github.com/zLulus/My_Note/wiki/.net-%E5%8D%95%E5%85%83%E6%B5%8B%E8%AF%95) 310 | 311 | [.NET & Xunit 设置优先级、顺序的单元测试](https://github.com/zLulus/My_Note/wiki/.NET-&-Xunit-%E8%AE%BE%E7%BD%AE%E4%BC%98%E5%85%88%E7%BA%A7%E3%80%81%E9%A1%BA%E5%BA%8F%E7%9A%84%E5%8D%95%E5%85%83%E6%B5%8B%E8%AF%95) 312 | 313 | [.NET & Xunit 最佳实践的单元测试](https://github.com/zLulus/My_Note/wiki/.NET-&-Xunit-%E6%9C%80%E4%BD%B3%E5%AE%9E%E8%B7%B5%E7%9A%84%E5%8D%95%E5%85%83%E6%B5%8B%E8%AF%95) 314 | 315 | [.NET & Nsubstitute 根据条件模拟返回值](https://github.com/zLulus/My_Note/wiki/.NET-&-Nsubstitute-%E6%A0%B9%E6%8D%AE%E6%9D%A1%E4%BB%B6%E6%A8%A1%E6%8B%9F%E8%BF%94%E5%9B%9E%E5%80%BC) 316 | 317 | [.NET & Xunit 多层级关系的单元测试](https://github.com/zLulus/My_Note/wiki/.NET-&-Xunit-%E5%A4%9A%E5%B1%82%E7%BA%A7%E5%85%B3%E7%B3%BB%E7%9A%84%E5%8D%95%E5%85%83%E6%B5%8B%E8%AF%95) 318 | 319 | [.NET & Nsubstitute 模拟Http请求](https://github.com/zLulus/My_Note/wiki/.NET-&-Nsubstitute-%E6%A8%A1%E6%8B%9FHttp%E8%AF%B7%E6%B1%82) 320 | 321 | ## .NET Core 322 | [.net core 2.0 读取配置文件](https://github.com/zLulus/My_Note/wiki/.net-core-2.0-%E8%AF%BB%E5%8F%96%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6) 323 | 324 | [windows IIS发布.net core网站的环境配置](https://github.com/zLulus/My_Note/wiki/windows-IIS%E5%8F%91%E5%B8%83.net-core%E7%BD%91%E7%AB%99%E7%9A%84%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE) 325 | 326 | [.net core注入服务](https://github.com/zLulus/My_Note/wiki/.net-core%E6%B3%A8%E5%85%A5%E6%9C%8D%E5%8A%A1) 327 | 328 | [EF Core注意事项](https://github.com/zLulus/My_Note/wiki/EF-Core%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9) 329 | 330 | [asp .net core 读取读取Views文件夹下的js和css](https://github.com/zLulus/My_Note/wiki/asp-.net-core-%E8%AF%BB%E5%8F%96%E8%AF%BB%E5%8F%96Views%E6%96%87%E4%BB%B6%E5%A4%B9%E4%B8%8B%E7%9A%84js%E5%92%8Ccss) 331 | 332 | [.net core config读取](https://github.com/zLulus/My_Note/wiki/.net-core-config%E8%AF%BB%E5%8F%96) 333 | 334 | [.net core 允许跨域](https://github.com/zLulus/My_Note/wiki/.net-core-%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F) 335 | 336 | [.net core使用ef 6](https://github.com/zLulus/My_Note/wiki/.net-core%E4%BD%BF%E7%94%A8ef-6) 337 | 338 | [.net core响应缓存](https://github.com/zLulus/My_Note/wiki/.net-core%E5%93%8D%E5%BA%94%E7%BC%93%E5%AD%98) 339 | 340 | [.net core调用C++库](https://github.com/zLulus/My_Note/wiki/.net-core%E8%B0%83%E7%94%A8C-plus-plus%E5%BA%93) 341 | 342 | [.net core 获得方法名](https://github.com/zLulus/My_Note/wiki/.net-core-%E8%8E%B7%E5%BE%97%E6%96%B9%E6%B3%95%E5%90%8D) 343 | 344 | [转储和分析.NET Core 中的内存泄漏OOM (dotnet dump)](https://github.com/zLulus/My_Note/wiki/%E8%BD%AC%E5%82%A8%E5%92%8C%E5%88%86%E6%9E%90.NET-Core-%E4%B8%AD%E7%9A%84%E5%86%85%E5%AD%98%E6%B3%84%E6%BC%8FOOM-(dotnet-dump)) 345 | 346 | ## .NET 347 | [.NET 6使用Redis](https://github.com/zLulus/My_Note/wiki/.NET-6%E4%BD%BF%E7%94%A8Redis) 348 | 349 | ## 锁 350 | 351 | [lock与Monitor](https://github.com/zLulus/My_Note/wiki/lock%E4%B8%8EMonitor) 352 | 353 | [AsyncLock 异步锁](https://github.com/zLulus/My_Note/wiki/AsyncLock-%E5%BC%82%E6%AD%A5%E9%94%81) 354 | 355 | [C# 读写锁](https://github.com/zLulus/My_Note/wiki/C%23-%E8%AF%BB%E5%86%99%E9%94%81) 356 | 357 | [C# 实现乐观锁](https://github.com/zLulus/My_Note/wiki/C%23-%E5%AE%9E%E7%8E%B0%E4%B9%90%E8%A7%82%E9%94%81) 358 | 359 | ## 程序集 360 | [Assembly Qualified Name(程序集限定名称)](https://github.com/zLulus/My_Note/wiki/Assembly-Qualified-Name%EF%BC%88%E7%A8%8B%E5%BA%8F%E9%9B%86%E9%99%90%E5%AE%9A%E5%90%8D%E7%A7%B0%EF%BC%89) 361 | 362 | [全局程序集缓存(GAC)](https://github.com/zLulus/My_Note/wiki/%E5%85%A8%E5%B1%80%E7%A8%8B%E5%BA%8F%E9%9B%86%E7%BC%93%E5%AD%98(GAC)) 363 | 364 | ## 值类型和引用类型 365 | [值类型和引用类型](https://github.com/zLulus/My_Note/wiki/%E5%80%BC%E7%B1%BB%E5%9E%8B%E5%92%8C%E5%BC%95%E7%94%A8%E7%B1%BB%E5%9E%8B) 366 | 367 | [string 特殊的引用类型](https://github.com/zLulus/My_Note/wiki/string-%E7%89%B9%E6%AE%8A%E7%9A%84%E5%BC%95%E7%94%A8%E7%B1%BB%E5%9E%8B) 368 | 369 | ## 托管代码/非托管代码 370 | 371 | [托管代码和非托管代码](https://github.com/zLulus/My_Note/wiki/%E6%89%98%E7%AE%A1%E4%BB%A3%E7%A0%81%E5%92%8C%E9%9D%9E%E6%89%98%E7%AE%A1%E4%BB%A3%E7%A0%81) 372 | 373 | [垃圾回收机制(GC)](https://github.com/zLulus/My_Note/wiki/%E5%9E%83%E5%9C%BE%E5%9B%9E%E6%94%B6%E6%9C%BA%E5%88%B6(GC)) 374 | 375 | [C# using语句](https://github.com/zLulus/My_Note/wiki/C%23-using%E8%AF%AD%E5%8F%A5) 376 | 377 | [析构函数Finalize()和Dispose()之间的区别](https://github.com/zLulus/My_Note/wiki/%E6%9E%90%E6%9E%84%E5%87%BD%E6%95%B0Finalize()%E5%92%8CDispose()%E4%B9%8B%E9%97%B4%E7%9A%84%E5%8C%BA%E5%88%AB) 378 | 379 | ## 委托 380 | [委托和事件](https://github.com/zLulus/My_Note/wiki/%E5%A7%94%E6%89%98%E5%92%8C%E4%BA%8B%E4%BB%B6) 381 | 382 | [C# 匿名方法](https://github.com/zLulus/My_Note/wiki/C%23-%E5%8C%BF%E5%90%8D%E6%96%B9%E6%B3%95) 383 | 384 | ## 异步 385 | [异步的几种方法](https://github.com/zLulus/My_Note/wiki/%E5%BC%82%E6%AD%A5%E7%9A%84%E5%87%A0%E7%A7%8D%E6%96%B9%E6%B3%95) 386 | 387 | ## 多线程 388 | [多线程Parallel和Task](https://github.com/zLulus/My_Note/wiki/%E5%A4%9A%E7%BA%BF%E7%A8%8BParallel%E5%92%8CTask) 389 | 390 | [线程安全集合](https://github.com/zLulus/My_Note/wiki/%E7%BA%BF%E7%A8%8B%E5%AE%89%E5%85%A8%E9%9B%86%E5%90%88) 391 | 392 | ## 依赖注入 393 | [依赖注入(DI)](https://github.com/zLulus/My_Note/wiki/%E4%BE%9D%E8%B5%96%E6%B3%A8%E5%85%A5(DI)) 394 | 395 | [ASP.NET Core 依赖注入](https://github.com/zLulus/My_Note/wiki/ASP.NET-Core-%E4%BE%9D%E8%B5%96%E6%B3%A8%E5%85%A5) 396 | 397 | [MEF](https://github.com/zLulus/My_Note/wiki/MEF) 398 | 399 | ## AOP 400 | [AOP Aspect oriented programming(面向切面编程)](https://github.com/zLulus/My_Note/wiki/AOP-Aspect-oriented-programming(%E9%9D%A2%E5%90%91%E5%88%87%E9%9D%A2%E7%BC%96%E7%A8%8B)) 401 | 402 | [特性(Attribute)](https://github.com/zLulus/My_Note/wiki/%E7%89%B9%E6%80%A7%EF%BC%88Attribute%EF%BC%89) 403 | 404 | [面向接口、面向对象、面向切面编程的区别](https://github.com/zLulus/My_Note/wiki/%E9%9D%A2%E5%90%91%E6%8E%A5%E5%8F%A3%E3%80%81%E9%9D%A2%E5%90%91%E5%AF%B9%E8%B1%A1%E3%80%81%E9%9D%A2%E5%90%91%E5%88%87%E9%9D%A2%E7%BC%96%E7%A8%8B%E7%9A%84%E5%8C%BA%E5%88%AB) 405 | 406 | ## 反射 407 | [C# 反射](https://github.com/zLulus/My_Note/wiki/C%23-%E5%8F%8D%E5%B0%84) 408 | 409 | [反射 BindingFlags 枚举](https://github.com/zLulus/My_Note/wiki/%E5%8F%8D%E5%B0%84-BindingFlags-%E6%9E%9A%E4%B8%BE) 410 | 411 | [反射 循环属性、字段赋值](https://github.com/zLulus/My_Note/wiki/%E5%8F%8D%E5%B0%84-%E5%BE%AA%E7%8E%AF%E5%B1%9E%E6%80%A7%E3%80%81%E5%AD%97%E6%AE%B5%E8%B5%8B%E5%80%BC) 412 | 413 | [DataTable转换为Entity(反射&&泛型)](https://github.com/zLulus/My_Note/wiki/DataTable%E8%BD%AC%E6%8D%A2%E4%B8%BAEntity(%E5%8F%8D%E5%B0%84&&%E6%B3%9B%E5%9E%8B)) 414 | 415 | [反射性能提升](https://github.com/zLulus/My_Note/wiki/%E5%8F%8D%E5%B0%84%E6%80%A7%E8%83%BD%E6%8F%90%E5%8D%87) 416 | 417 | ## 类型转换 418 | [基类、子类之间的类型转换](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E7%B1%BB%E3%80%81%E5%AD%90%E7%B1%BB%E4%B9%8B%E9%97%B4%E7%9A%84%E7%B1%BB%E5%9E%8B%E8%BD%AC%E6%8D%A2) 419 | 420 | [自定义显隐式类型转换](https://github.com/zLulus/My_Note/wiki/%E8%87%AA%E5%AE%9A%E4%B9%89%E6%98%BE%E9%9A%90%E5%BC%8F%E7%B1%BB%E5%9E%8B%E8%BD%AC%E6%8D%A2) 421 | 422 | ## C# & TCP 423 | [.NET for TCP服务端 && 客户端(原生Socket)](https://github.com/zLulus/My_Note/wiki/.NET-for-TCP%E6%9C%8D%E5%8A%A1%E7%AB%AF-&&-%E5%AE%A2%E6%88%B7%E7%AB%AF(%E5%8E%9F%E7%94%9FSocket)) 424 | 425 | [.NET for TCP服务端 && 客户端(BeetleX)](https://github.com/zLulus/My_Note/wiki/.NET-for-TCP%E6%9C%8D%E5%8A%A1%E7%AB%AF-&&-%E5%AE%A2%E6%88%B7%E7%AB%AF(BeetleX)) 426 | 427 | [Socket粘包](https://github.com/zLulus/My_Note/wiki/Socket%E7%B2%98%E5%8C%85) 428 | 429 | ## 调试 430 | [Windows 调试程序 (WinDbg)](https://github.com/zLulus/My_Note/wiki/Windows-%E8%B0%83%E8%AF%95%E7%A8%8B%E5%BA%8F-(WinDbg)) 431 | 432 | [调试第三方库的源代码](https://github.com/zLulus/My_Note/wiki/%E8%B0%83%E8%AF%95%E7%AC%AC%E4%B8%89%E6%96%B9%E5%BA%93%E7%9A%84%E6%BA%90%E4%BB%A3%E7%A0%81) 433 | 434 | ## 消息队列 435 | ### RabbitMQ 436 | 437 | [RabbitMQ](https://github.com/zLulus/My_Note/wiki/RabbitMQ) 438 | 439 | [RabbitMQ Work Queues](https://github.com/zLulus/My_Note/wiki/RabbitMQ-Work-Queues) 440 | 441 | [RabbitMQ Publish && Subscribe](https://github.com/zLulus/My_Note/wiki/RabbitMQ-Publish-&&-Subscribe) 442 | 443 | [RabbitMQ Routing](https://github.com/zLulus/My_Note/wiki/RabbitMQ-Routing) 444 | 445 | [RabbitMQ Topics](https://github.com/zLulus/My_Note/wiki/RabbitMQ-Topics) 446 | 447 | [RabbitMQ Remote procedure call (RPC)](https://github.com/zLulus/My_Note/wiki/RabbitMQ-Remote-procedure-call-(RPC)) 448 | 449 | [RabbitMQ 生产者确认](https://github.com/zLulus/My_Note/wiki/RabbitMQ-%E7%94%9F%E4%BA%A7%E8%80%85%E7%A1%AE%E8%AE%A4) 450 | 451 | # ML .NET 452 | [ML .NET 二手车价格预测](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E4%BA%8C%E6%89%8B%E8%BD%A6%E4%BB%B7%E6%A0%BC%E9%A2%84%E6%B5%8B) 453 | 454 | [ML .NET 二手车价格预测之再次训练与参数调整](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E4%BA%8C%E6%89%8B%E8%BD%A6%E4%BB%B7%E6%A0%BC%E9%A2%84%E6%B5%8B%E4%B9%8B%E5%86%8D%E6%AC%A1%E8%AE%AD%E7%BB%83%E4%B8%8E%E5%8F%82%E6%95%B0%E8%B0%83%E6%95%B4) 455 | 456 | [ML .NET 二手车价格预测之评估](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E4%BA%8C%E6%89%8B%E8%BD%A6%E4%BB%B7%E6%A0%BC%E9%A2%84%E6%B5%8B%E4%B9%8B%E8%AF%84%E4%BC%B0) 457 | 458 | [ML .NET 猫狗图像分类](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E7%8C%AB%E7%8B%97%E5%9B%BE%E5%83%8F%E5%88%86%E7%B1%BB) 459 | 460 | [ML .NET 预测订单是否被退货](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E9%A2%84%E6%B5%8B%E8%AE%A2%E5%8D%95%E6%98%AF%E5%90%A6%E8%A2%AB%E9%80%80%E8%B4%A7) 461 | 462 | [ML .NET 电影推荐](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E7%94%B5%E5%BD%B1%E6%8E%A8%E8%8D%90) 463 | 464 | [ML .NET 电影评论情绪分析](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E7%94%B5%E5%BD%B1%E8%AF%84%E8%AE%BA%E6%83%85%E7%BB%AA%E5%88%86%E6%9E%90) 465 | 466 | [ML .NET 异常情况检测](https://github.com/zLulus/My_Note/wiki/ML-.NET-%E5%BC%82%E5%B8%B8%E6%83%85%E5%86%B5%E6%A3%80%E6%B5%8B) 467 | 468 | [Unable to load DLL 'tensorflow' or one of its dependencies (ML.NET)](https://github.com/zLulus/My_Note/wiki/Unable-to-load-DLL-'tensorflow'-or-one-of-its-dependencies-(ML.NET)) 469 | 470 | # WCF 471 | ## 基本 472 | 473 | [WCF概念](https://github.com/zLulus/My_Note/wiki/WCF%E6%A6%82%E5%BF%B5) 474 | 475 | [WCF配置文件详解](https://github.com/zLulus/My_Note/wiki/WCF%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6%E8%AF%A6%E8%A7%A3) 476 | 477 | [多个不同类对象传输思路](https://github.com/zLulus/My_Note/wiki/%E5%A4%9A%E4%B8%AA%E4%B8%8D%E5%90%8C%E7%B1%BB%E5%AF%B9%E8%B1%A1%E4%BC%A0%E8%BE%93%E6%80%9D%E8%B7%AF) 478 | 479 | [WCF 大文件传输配置](https://github.com/zLulus/My_Note/wiki/WCF-%E5%A4%A7%E6%96%87%E4%BB%B6%E4%BC%A0%E8%BE%93%E9%85%8D%E7%BD%AE) 480 | 481 | [毫秒数据字符串转换为DateTime](https://github.com/zLulus/My_Note/wiki/%E6%AF%AB%E7%A7%92%E6%95%B0%E6%8D%AE%E5%AD%97%E7%AC%A6%E4%B8%B2%E8%BD%AC%E6%8D%A2%E4%B8%BADateTime) 482 | 483 | [POST请求——HttpWebRequest](https://github.com/zLulus/My_Note/wiki/POST%E8%AF%B7%E6%B1%82%E2%80%94%E2%80%94HttpWebRequest) 484 | 485 | [windows服务的编写,手动安装与卸载](https://github.com/zLulus/My_Note/wiki/windows%E6%9C%8D%E5%8A%A1%E7%9A%84%E7%BC%96%E5%86%99,%E6%89%8B%E5%8A%A8%E5%AE%89%E8%A3%85%E4%B8%8E%E5%8D%B8%E8%BD%BD) 486 | 487 | [WCF的几个注意事项](https://github.com/zLulus/My_Note/wiki/WCF%E7%9A%84%E5%87%A0%E4%B8%AA%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9) 488 | 489 | [WCF 32位程序调试报错](https://github.com/zLulus/My_Note/wiki/WCF-32%E4%BD%8D%E7%A8%8B%E5%BA%8F%E8%B0%83%E8%AF%95%E6%8A%A5%E9%94%99) 490 | 491 | ## Rest 492 | 493 | [RESTful API](https://github.com/zLulus/My_Note/wiki/RESTful-API) 494 | 495 | [WCF Rest用法](https://github.com/zLulus/My_Note/wiki/WCF-Rest%E7%94%A8%E6%B3%95) 496 | 497 | [Xml格式的Bared和Warpped](https://github.com/zLulus/My_Note/wiki/Xml%E6%A0%BC%E5%BC%8F%E7%9A%84Bared%E5%92%8CWarpped) 498 | 499 | [Wrapped的返回值取值](https://github.com/zLulus/My_Note/wiki/Wrapped%E7%9A%84%E8%BF%94%E5%9B%9E%E5%80%BC%E5%8F%96%E5%80%BC) 500 | 501 | ## SOAP 502 | [WCF SOAP用法](https://github.com/zLulus/My_Note/wiki/WCF-SOAP%E7%94%A8%E6%B3%95) 503 | 504 | [WCF服务托管方式(转载)](https://github.com/zLulus/My_Note/wiki/WCF%E6%9C%8D%E5%8A%A1%E6%89%98%E7%AE%A1%E6%96%B9%E5%BC%8F%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 505 | 506 | ## WCF与IIS的相关内容 507 | 508 | [WCF服务的IIS托管(网站托管)](https://github.com/zLulus/My_Note/wiki/WCF%E6%9C%8D%E5%8A%A1%E7%9A%84IIS%E6%89%98%E7%AE%A1%EF%BC%88%E7%BD%91%E7%AB%99%E6%89%98%E7%AE%A1%EF%BC%89) 509 | 510 | [WCF服务的IIS托管(应用程序)](https://github.com/zLulus/My_Note/wiki/WCF%E6%9C%8D%E5%8A%A1%E7%9A%84IIS%E6%89%98%E7%AE%A1%EF%BC%88%E5%BA%94%E7%94%A8%E7%A8%8B%E5%BA%8F%EF%BC%89) 511 | 512 | [IIS运行WCF服务报错](https://github.com/zLulus/My_Note/wiki/IIS%E8%BF%90%E8%A1%8CWCF%E6%9C%8D%E5%8A%A1%E6%8A%A5%E9%94%99) 513 | 514 | 515 | # IIS 516 | 517 | [IIS基本介绍](https://github.com/zLulus/My_Note/wiki/IIS%E5%9F%BA%E6%9C%AC%E4%BB%8B%E7%BB%8D) 518 | 519 | [VS发布到IIS Express外网Debug](https://github.com/zLulus/My_Note/wiki/VS%E5%8F%91%E5%B8%83%E5%88%B0IIS-Express%E5%A4%96%E7%BD%91Debug%EF%BC%88%E5%A6%82%E5%BE%AE%E4%BF%A1%E5%BC%80%E5%8F%91%EF%BC%89) 520 | 521 | [IIS IP地址与端口](https://github.com/zLulus/My_Note/wiki/IIS-IP%E5%9C%B0%E5%9D%80%E4%B8%8E%E7%AB%AF%E5%8F%A3) 522 | 523 | [IIS文件目录](https://github.com/zLulus/My_Note/wiki/IIS%E6%96%87%E4%BB%B6%E7%9B%AE%E5%BD%95) 524 | 525 | [MIME映射(程序映射)](https://github.com/zLulus/My_Note/wiki/MIME%E6%98%A0%E5%B0%84(%E7%A8%8B%E5%BA%8F%E6%98%A0%E5%B0%84)) 526 | 527 | [服务没有权限访问某目录](https://github.com/zLulus/My_Note/wiki/%E6%9C%8D%E5%8A%A1%E6%B2%A1%E6%9C%89%E6%9D%83%E9%99%90%E8%AE%BF%E9%97%AE%E6%9F%90%E7%9B%AE%E5%BD%95) 528 | 529 | [VS中发布并调试IIS程序(非附加进程)](https://github.com/zLulus/My_Note/wiki/VS%E4%B8%AD%E5%8F%91%E5%B8%83%E5%B9%B6%E8%B0%83%E8%AF%95IIS%E7%A8%8B%E5%BA%8F%EF%BC%88%E9%9D%9E%E9%99%84%E5%8A%A0%E8%BF%9B%E7%A8%8B%EF%BC%81%EF%BC%81%EF%BC%81%EF%BC%89) 530 | 531 | [微信调试的几种方式](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E8%B0%83%E8%AF%95%E7%9A%84%E5%87%A0%E7%A7%8D%E6%96%B9%E5%BC%8F) 532 | 533 | [分析器错误消息: 未能加载类型](https://github.com/zLulus/My_Note/wiki/%E5%88%86%E6%9E%90%E5%99%A8%E9%94%99%E8%AF%AF%E6%B6%88%E6%81%AF:%C2%A0%E6%9C%AA%E8%83%BD%E5%8A%A0%E8%BD%BD%E7%B1%BB%E5%9E%8B) 534 | 535 | [IIS keep alive](https://github.com/zLulus/My_Note/wiki/IIS-keep-alive) 536 | 537 | [IIS发布报错 查看详细信息](https://github.com/zLulus/My_Note/wiki/IIS%E5%8F%91%E5%B8%83%E6%8A%A5%E9%94%99--%E6%9F%A5%E7%9C%8B%E8%AF%A6%E7%BB%86%E4%BF%A1%E6%81%AF) 538 | 539 | # ASP .NET 540 | [Route data(转载)](https://github.com/zLulus/My_Note/wiki/Route-data%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 541 | 542 | [ASP .NET DropDownList多级联动事件](https://github.com/zLulus/My_Note/wiki/ASP-.NET-DropDownList%E5%A4%9A%E7%BA%A7%E8%81%94%E5%8A%A8%E4%BA%8B%E4%BB%B6) 543 | 544 | [ASP .NET Controller返回类型](https://github.com/zLulus/My_Note/wiki/ASP-.NET-Controller%E8%BF%94%E5%9B%9E%E7%B1%BB%E5%9E%8B) 545 | 546 | [ASP .NET导出word(转载)](https://github.com/zLulus/My_Note/wiki/ASP-.NET%E5%AF%BC%E5%87%BAword%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 547 | 548 | [ASP .NET My97DatePicker](https://github.com/zLulus/My_Note/wiki/ASP-.NET-My97DatePicker) 549 | 550 | [ViewBag&&ViewData(转载)](https://github.com/zLulus/My_Note/wiki/ViewBag&&ViewData(%E8%BD%AC%E8%BD%BD)) 551 | 552 | [ASP .NET Model](https://github.com/zLulus/My_Note/wiki/ASP-.NET%E3%80%80Model) 553 | 554 | [ASP .NET 返回Json操作结果](https://github.com/zLulus/My_Note/wiki/ASP-.NET--%E8%BF%94%E5%9B%9EJson%E6%93%8D%E4%BD%9C%E7%BB%93%E6%9E%9C) 555 | 556 | [下拉选择框 设置内容/获取选中项/设置选中项](https://github.com/zLulus/My_Note/wiki/%E4%B8%8B%E6%8B%89%E9%80%89%E6%8B%A9%E6%A1%86%E3%80%80%E8%AE%BE%E7%BD%AE%E5%86%85%E5%AE%B9-%E8%8E%B7%E5%8F%96%E9%80%89%E4%B8%AD%E9%A1%B9-%E8%AE%BE%E7%BD%AE%E9%80%89%E4%B8%AD%E9%A1%B9) 557 | 558 | [Form submit方法](https://github.com/zLulus/My_Note/wiki/Form-submit) 559 | 560 | [Tab切换效果的实现](https://github.com/zLulus/My_Note/wiki/Tab%E5%88%87%E6%8D%A2%E6%95%88%E6%9E%9C%E7%9A%84%E5%AE%9E%E7%8E%B0) 561 | 562 | [ajax默认form表单提交,导致实体不识别](https://github.com/zLulus/My_Note/wiki/ajax%E9%BB%98%E8%AE%A4form%E8%A1%A8%E5%8D%95%E6%8F%90%E4%BA%A4%EF%BC%8C%E5%AF%BC%E8%87%B4%E5%AE%9E%E4%BD%93%E4%B8%8D%E8%AF%86%E5%88%AB) 563 | 564 | [ASP .NET Views文件夹下面的文件找不到](https://github.com/zLulus/My_Note/wiki/ASP-.NET-Views%E6%96%87%E4%BB%B6%E5%A4%B9%E4%B8%8B%E9%9D%A2%E7%9A%84%E6%96%87%E4%BB%B6%E6%89%BE%E4%B8%8D%E5%88%B0) 565 | 566 | [ASP .NET Response类型](https://github.com/zLulus/My_Note/wiki/ASP-.NET-Response%E7%B1%BB%E5%9E%8B) 567 | 568 | [js,css引用顺序设定](https://github.com/zLulus/My_Note/wiki/js,css%E5%BC%95%E7%94%A8%E9%A1%BA%E5%BA%8F%E8%AE%BE%E5%AE%9A) 569 | 570 | [缓存问题](https://github.com/zLulus/My_Note/wiki/%E7%BC%93%E5%AD%98%E9%97%AE%E9%A2%98) 571 | 572 | [session和cookie](https://github.com/zLulus/My_Note/wiki/session%E5%92%8Ccookie) 573 | 574 | [身份认证的几种方式](https://github.com/zLulus/My_Note/wiki/%E8%BA%AB%E4%BB%BD%E8%AE%A4%E8%AF%81%E7%9A%84%E5%87%A0%E7%A7%8D%E6%96%B9%E5%BC%8F) 575 | 576 | [WebAPI Delete方法报错405 Method Not Allowed](https://github.com/zLulus/My_Note/wiki/WebAPI-Delete%E6%96%B9%E6%B3%95%E6%8A%A5%E9%94%99405-Method-Not-Allowed) 577 | 578 | [Debug工具——事件查看器](https://github.com/zLulus/My_Note/wiki/Debug%E5%B7%A5%E5%85%B7%E2%80%94%E2%80%94%E4%BA%8B%E4%BB%B6%E6%9F%A5%E7%9C%8B%E5%99%A8) 579 | 580 | [IIS发布的网站绑定域名](https://github.com/zLulus/My_Note/wiki/IIS%E5%8F%91%E5%B8%83%E7%9A%84%E7%BD%91%E7%AB%99%E7%BB%91%E5%AE%9A%E5%9F%9F%E5%90%8D) 581 | 582 | [二维码生成与返回客户端](https://github.com/zLulus/My_Note/wiki/%E4%BA%8C%E7%BB%B4%E7%A0%81%E7%94%9F%E6%88%90%E4%B8%8E%E8%BF%94%E5%9B%9E%E5%AE%A2%E6%88%B7%E7%AB%AF) 583 | 584 | [两个同名controller导致调用崩溃](https://github.com/zLulus/My_Note/wiki/%E4%B8%A4%E4%B8%AA%E5%90%8C%E5%90%8Dcontroller%E5%AF%BC%E8%87%B4%E8%B0%83%E7%94%A8%E5%B4%A9%E6%BA%83) 585 | 586 | [asp .net 大文件传输配置](https://github.com/zLulus/My_Note/wiki/asp-.net-%E5%A4%A7%E6%96%87%E4%BB%B6%E4%BC%A0%E8%BE%93%E9%85%8D%E7%BD%AE) 587 | 588 | [asp .net 允许跨域](https://github.com/zLulus/My_Note/wiki/asp-.net-%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F) 589 | 590 | [部分站点发布报错 编译器失败,错误代码为 2146232576。](https://github.com/zLulus/My_Note/wiki/%E9%83%A8%E5%88%86%E7%AB%99%E7%82%B9%E5%8F%91%E5%B8%83%E6%8A%A5%E9%94%99---%E7%BC%96%E8%AF%91%E5%99%A8%E5%A4%B1%E8%B4%A5%EF%BC%8C%E9%94%99%E8%AF%AF%E4%BB%A3%E7%A0%81%E4%B8%BA--2146232576%E3%80%82) 591 | 592 | [asp .net identity相关概念](https://github.com/zLulus/My_Note/wiki/asp-.net-identity%E7%9B%B8%E5%85%B3%E6%A6%82%E5%BF%B5) 593 | 594 | [OData](https://github.com/zLulus/My_Note/wiki/OData) 595 | 596 | [asp .net mvc 获得用户IP](https://github.com/zLulus/My_Note/wiki/asp-.net-mvc-%E8%8E%B7%E5%BE%97%E7%94%A8%E6%88%B7IP) 597 | 598 | [asp .net 页面跳转](https://github.com/zLulus/My_Note/wiki/asp-.net-%E9%A1%B5%E9%9D%A2%E8%B7%B3%E8%BD%AC) 599 | 600 | [asp .net Cookies](https://github.com/zLulus/My_Note/wiki/asp-.net-Cookies) 601 | 602 | [带参跳转其他controller](https://github.com/zLulus/My_Note/wiki/%E5%B8%A6%E5%8F%82%E8%B7%B3%E8%BD%AC%E5%85%B6%E4%BB%96controller) 603 | 604 | [asp .net 文件浏览功能](https://github.com/zLulus/My_Note/wiki/asp-.net-%E6%96%87%E4%BB%B6%E6%B5%8F%E8%A7%88%E5%8A%9F%E8%83%BD) 605 | 606 | [浏览器本地存储方式](https://github.com/zLulus/My_Note/wiki/%E6%B5%8F%E8%A7%88%E5%99%A8%E6%9C%AC%E5%9C%B0%E5%AD%98%E5%82%A8%E6%96%B9%E5%BC%8F) 607 | 608 | [ASP.NET page life cycle(页面生命周期)](https://github.com/zLulus/My_Note/wiki/ASP.NET-page-life-cycle%EF%BC%88%E9%A1%B5%E9%9D%A2%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F%EF%BC%89) 609 | 610 | [GET请求和POST请求的区别](https://github.com/zLulus/My_Note/wiki/GET%E8%AF%B7%E6%B1%82%E5%92%8CPOST%E8%AF%B7%E6%B1%82%E7%9A%84%E5%8C%BA%E5%88%AB) 611 | 612 | ## 其他 613 | [aspx “路由”](https://github.com/zLulus/My_Note/wiki/aspx-%E2%80%9C%E8%B7%AF%E7%94%B1%E2%80%9D) 614 | 615 | ## ASP .NET Core 616 | 617 | [ASP.NET Core 配置身份验证](https://github.com/zLulus/My_Note/wiki/ASP.NET-Core-%E9%85%8D%E7%BD%AE%E8%BA%AB%E4%BB%BD%E9%AA%8C%E8%AF%81) 618 | 619 | [ASP .NET Core Get请求参数为数组](https://github.com/zLulus/My_Note/wiki/ASP-.NET-Core-Get%E8%AF%B7%E6%B1%82%E5%8F%82%E6%95%B0%E4%B8%BA%E6%95%B0%E7%BB%84) 620 | 621 | [ASP .NET Core 发布到linux系统](https://github.com/zLulus/My_Note/wiki/ASP-.NET-Core-%E5%8F%91%E5%B8%83%E5%88%B0linux%E7%B3%BB%E7%BB%9F) 622 | 623 | [ASP.NET Core 管道和中间件(pipeline)](https://github.com/zLulus/My_Note/wiki/ASP.NET-Core-%E7%AE%A1%E9%81%93%E5%92%8C%E4%B8%AD%E9%97%B4%E4%BB%B6(pipeline)) 624 | 625 | [asp .net core 视图组件——Html.Action的替代](https://github.com/zLulus/My_Note/wiki/asp-.net-core-%E8%A7%86%E5%9B%BE%E7%BB%84%E4%BB%B6%E2%80%94%E2%80%94Html.Action%E7%9A%84%E6%9B%BF%E4%BB%A3) 626 | 627 | [asp .net core 使用spa](https://github.com/zLulus/My_Note/wiki/asp-.net-core-%E4%BD%BF%E7%94%A8spa) 628 | 629 | [理解ASP.NET Core验证模型](https://github.com/zLulus/My_Note/wiki/%E7%90%86%E8%A7%A3ASP.NET-Core%E9%AA%8C%E8%AF%81%E6%A8%A1%E5%9E%8B) 630 | 631 | [.net core service && angular项目 iis发布](https://github.com/zLulus/My_Note/wiki/.net-core-service-&&-angular%E9%A1%B9%E7%9B%AE-iis%E5%8F%91%E5%B8%83) 632 | 633 | [consul](https://github.com/zLulus/My_Note/wiki/consul) 634 | 635 | [Ocelot](https://github.com/zLulus/My_Note/wiki/Ocelot) 636 | 637 | [ASP .NET Core添加Problem Details](https://github.com/zLulus/My_Note/wiki/ASP-.NET-Core%E6%B7%BB%E5%8A%A0Problem-Details) 638 | 639 | [ASP .NET Core 设置枚举请求和返回使用字符串而非数字](https://github.com/zLulus/My_Note/wiki/ASP-.NET-Core-%E8%AE%BE%E7%BD%AE%E6%9E%9A%E4%B8%BE%E8%AF%B7%E6%B1%82%E5%92%8C%E8%BF%94%E5%9B%9E%E4%BD%BF%E7%94%A8%E5%AD%97%E7%AC%A6%E4%B8%B2%E8%80%8C%E9%9D%9E%E6%95%B0%E5%AD%97) 640 | 641 | #### 微服务 642 | 643 | [微服务中的通讯](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E6%9C%8D%E5%8A%A1%E4%B8%AD%E7%9A%84%E9%80%9A%E8%AE%AF) 644 | 645 | ## IdentityServer 646 | [IdentityServer的基本概念与特性](https://github.com/zLulus/My_Note/wiki/IdentityServer%E7%9A%84%E5%9F%BA%E6%9C%AC%E6%A6%82%E5%BF%B5%E4%B8%8E%E7%89%B9%E6%80%A7) 647 | 648 | [IdentityServer流程图与相关术语](https://github.com/zLulus/My_Note/wiki/IdentityServer%E6%B5%81%E7%A8%8B%E5%9B%BE%E4%B8%8E%E7%9B%B8%E5%85%B3%E6%9C%AF%E8%AF%AD) 649 | 650 | ### 最简单的IdentityServer实现 651 | [最简单的IdentityServer实现——项目基本结构与流程](https://github.com/zLulus/My_Note/wiki/%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84IdentityServer%E5%AE%9E%E7%8E%B0%E2%80%94%E2%80%94%E9%A1%B9%E7%9B%AE%E5%9F%BA%E6%9C%AC%E7%BB%93%E6%9E%84%E4%B8%8E%E6%B5%81%E7%A8%8B) 652 | 653 | [最简单的IdentityServer实现——IdentityServer](https://github.com/zLulus/My_Note/wiki/%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84IdentityServer%E5%AE%9E%E7%8E%B0%E2%80%94%E2%80%94IdentityServer) 654 | 655 | [最简单的IdentityServer实现——Api](https://github.com/zLulus/My_Note/wiki/%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84IdentityServer%E5%AE%9E%E7%8E%B0%E2%80%94%E2%80%94Api) 656 | 657 | [最简单的IdentityServer实现——Client](https://github.com/zLulus/My_Note/wiki/%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84IdentityServer%E5%AE%9E%E7%8E%B0%E2%80%94%E2%80%94Client) 658 | 659 | ### 基于IdentityServer4的单点登录 660 | [基于IdentityServer4的单点登录——项目基本结构与流程](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E4%BA%8EIdentityServer4%E7%9A%84%E5%8D%95%E7%82%B9%E7%99%BB%E5%BD%95%E2%80%94%E2%80%94%E9%A1%B9%E7%9B%AE%E5%9F%BA%E6%9C%AC%E7%BB%93%E6%9E%84%E4%B8%8E%E6%B5%81%E7%A8%8B) 661 | 662 | [基于IdentityServer4的单点登录——IdentityServer](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E4%BA%8EIdentityServer4%E7%9A%84%E5%8D%95%E7%82%B9%E7%99%BB%E5%BD%95%E2%80%94%E2%80%94IdentityServer) 663 | 664 | [基于IdentityServer4的单点登录——Api](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E4%BA%8EIdentityServer4%E7%9A%84%E5%8D%95%E7%82%B9%E7%99%BB%E5%BD%95%E2%80%94%E2%80%94Api) 665 | 666 | [基于IdentityServer4的单点登录——Client](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E4%BA%8EIdentityServer4%E7%9A%84%E5%8D%95%E7%82%B9%E7%99%BB%E5%BD%95%E2%80%94%E2%80%94Client) 667 | 668 | [基于IdentityServer4示例的修改](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E4%BA%8EIdentityServer4%E7%A4%BA%E4%BE%8B%E7%9A%84%E4%BF%AE%E6%94%B9) 669 | 670 | # javascript && jQuery 671 | [Ajax请求小结](https://github.com/zLulus/My_Note/wiki/Ajax%E8%AF%B7%E6%B1%82%E5%B0%8F%E7%BB%93) 672 | 673 | [layerui](https://github.com/zLulus/My_Note/wiki/layerui) 674 | 675 | [弹出确认框,打开新窗口](https://github.com/zLulus/My_Note/wiki/%E5%BC%B9%E5%87%BA%E7%A1%AE%E8%AE%A4%E6%A1%86%EF%BC%8C%E6%89%93%E5%BC%80%E6%96%B0%E7%AA%97%E5%8F%A3) 676 | 677 | [刷新页面的几种方式](https://github.com/zLulus/My_Note/wiki/%E5%88%B7%E6%96%B0%E9%A1%B5%E9%9D%A2%E7%9A%84%E5%87%A0%E7%A7%8D%E6%96%B9%E5%BC%8F) 678 | 679 | [区别JS和DOM对象](https://github.com/zLulus/My_Note/wiki/%E5%8C%BA%E5%88%ABJS%E5%92%8CDOM%E5%AF%B9%E8%B1%A1) 680 | 681 | [js 动态生成button 并设置click事件](https://github.com/zLulus/My_Note/wiki/js-%E5%8A%A8%E6%80%81%E7%94%9F%E6%88%90button-%E5%B9%B6%E8%AE%BE%E7%BD%AEclick%E4%BA%8B%E4%BB%B6) 682 | 683 | [js的一些写法问题](https://github.com/zLulus/My_Note/wiki/js%E7%9A%84%E4%B8%80%E4%BA%9B%E5%86%99%E6%B3%95%E9%97%AE%E9%A2%98) 684 | 685 | [js css加时间戳](https://github.com/zLulus/My_Note/wiki/js-css%E5%8A%A0%E6%97%B6%E9%97%B4%E6%88%B3) 686 | 687 | [JavaScript 继承与原型链](https://github.com/zLulus/My_Note/wiki/JavaScript-%E7%BB%A7%E6%89%BF%E4%B8%8E%E5%8E%9F%E5%9E%8B%E9%93%BE) 688 | 689 | # 包管理 690 | 691 | [yarn](https://github.com/zLulus/My_Note/wiki/yarn) 692 | 693 | [npm源管理器——nrm](https://github.com/zLulus/My_Note/wiki/npm%E6%BA%90%E7%AE%A1%E7%90%86%E5%99%A8%E2%80%94%E2%80%94nrm) 694 | 695 | [choco(chocolatey)](https://github.com/zLulus/My_Note/wiki/choco(chocolatey)) 696 | 697 | # 项目管理工具 698 | 699 | ## git 700 | [github基本使用](https://github.com/zLulus/My_Note/wiki/github%E5%9F%BA%E6%9C%AC%E4%BD%BF%E7%94%A8) 701 | 702 | [git常用指令](https://github.com/zLulus/My_Note/wiki/git%E5%B8%B8%E7%94%A8%E6%8C%87%E4%BB%A4) 703 | 704 | [SVN如何迁徙到Git](https://github.com/zLulus/My_Note/wiki/SVN%E5%A6%82%E4%BD%95%E8%BF%81%E5%BE%99%E5%88%B0Git) 705 | 706 | [git cherry pick](https://github.com/zLulus/My_Note/wiki/git-cherry-pick) 707 | 708 | [git hook](https://github.com/zLulus/My_Note/wiki/git-hook) 709 | 710 | [git stash](https://github.com/zLulus/My_Note/wiki/git-stash) 711 | 712 | [git清除提交记录](https://github.com/zLulus/My_Note/wiki/git%E6%B8%85%E9%99%A4%E6%8F%90%E4%BA%A4%E8%AE%B0%E5%BD%95) 713 | 714 | # AngularJS 715 | 716 | [AngularJS 简介](https://github.com/zLulus/My_Note/wiki/AngularJS-%E7%AE%80%E4%BB%8B) 717 | 718 | [AngularJS 调试技巧](https://github.com/zLulus/My_Note/wiki/AngularJS-%E8%B0%83%E8%AF%95%E6%8A%80%E5%B7%A7) 719 | 720 | [AngularJS Scope(作用域)](https://github.com/zLulus/My_Note/wiki/AngularJS-Scope(%E4%BD%9C%E7%94%A8%E5%9F%9F)) 721 | 722 | [AngularJS 过滤器](https://github.com/zLulus/My_Note/wiki/AngularJS-%E8%BF%87%E6%BB%A4%E5%99%A8) 723 | 724 | [AngularJS 服务(Service)](https://github.com/zLulus/My_Note/wiki/AngularJS-%E6%9C%8D%E5%8A%A1(Service)) 725 | 726 | [AngularJS radio绑定与取值](https://github.com/zLulus/My_Note/wiki/AngularJS-radio%E7%BB%91%E5%AE%9A%E4%B8%8E%E5%8F%96%E5%80%BC) 727 | 728 | [AngularJS table循环数据](https://github.com/zLulus/My_Note/wiki/AngularJS-table%E5%BE%AA%E7%8E%AF%E6%95%B0%E6%8D%AE) 729 | 730 | [AngularJS 页面计算](https://github.com/zLulus/My_Note/wiki/AngularJS-%E9%A1%B5%E9%9D%A2%E8%AE%A1%E7%AE%97) 731 | 732 | [AngularJS 多级下拉框](https://github.com/zLulus/My_Note/wiki/AngularJS-%E5%A4%9A%E7%BA%A7%E4%B8%8B%E6%8B%89%E6%A1%86) 733 | 734 | [AngularJS 计时器](https://github.com/zLulus/My_Note/wiki/AngularJS-%E8%AE%A1%E6%97%B6%E5%99%A8) 735 | 736 | [AngularJS ng-if使用](https://github.com/zLulus/My_Note/wiki/AngularJS-ng_if%E4%BD%BF%E7%94%A8) 737 | 738 | [AngularJS 时间格式化](https://github.com/zLulus/My_Note/wiki/AngularJS-%E6%97%B6%E9%97%B4%E6%A0%BC%E5%BC%8F%E5%8C%96) 739 | 740 | [AngularJS $http和$.ajax](https://github.com/zLulus/My_Note/wiki/AngularJS-$http%E5%92%8C$.ajax) 741 | 742 | [AngularJS 依赖注入](https://github.com/zLulus/My_Note/wiki/AngularJS-%E4%BE%9D%E8%B5%96%E6%B3%A8%E5%85%A5) 743 | 744 | [图片加载](https://github.com/zLulus/My_Note/wiki/%E5%9B%BE%E7%89%87%E5%8A%A0%E8%BD%BD) 745 | 746 | [Angularjs 计数 $index](https://github.com/zLulus/My_Note/wiki/Angularjs-%E8%AE%A1%E6%95%B0-$index) 747 | 748 | [Angularjs html文本显示](https://github.com/zLulus/My_Note/wiki/Angularjs-html%E6%96%87%E6%9C%AC%E6%98%BE%E7%A4%BA) 749 | 750 | # Angular 751 | 752 | [Node.js && Angular && TypeScript 环境安装与更新](https://github.com/zLulus/My_Note/wiki/Node.js-&&-Angular-&&-TypeScript-%E7%8E%AF%E5%A2%83%E5%AE%89%E8%A3%85%E4%B8%8E%E6%9B%B4%E6%96%B0) 753 | 754 | [Angular常用指令](https://github.com/zLulus/My_Note/wiki/Angular%E5%B8%B8%E7%94%A8%E6%8C%87%E4%BB%A4) 755 | 756 | [Angular基本概念理解](https://github.com/zLulus/My_Note/wiki/Angular%E5%9F%BA%E6%9C%AC%E6%A6%82%E5%BF%B5%E7%90%86%E8%A7%A3) 757 | 758 | [Angular语法(一)——展示数据](https://github.com/zLulus/My_Note/wiki/Angular%E8%AF%AD%E6%B3%95%EF%BC%88%E4%B8%80%EF%BC%89%E2%80%94%E2%80%94%E5%B1%95%E7%A4%BA%E6%95%B0%E6%8D%AE) 759 | 760 | [Angular语法(二)——模板语法](https://github.com/zLulus/My_Note/wiki/Angular%E8%AF%AD%E6%B3%95%EF%BC%88%E4%BA%8C%EF%BC%89%E2%80%94%E2%80%94%E6%A8%A1%E6%9D%BF%E8%AF%AD%E6%B3%95) 761 | 762 | [Angular语法(三)——数据绑定](https://github.com/zLulus/My_Note/wiki/Angular%E8%AF%AD%E6%B3%95%EF%BC%88%E4%B8%89%EF%BC%89%E2%80%94%E2%80%94%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A) 763 | 764 | [Angular常见问题](https://github.com/zLulus/My_Note/wiki/Angular%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98) 765 | 766 | [Angular登录示例](https://github.com/zLulus/My_Note/wiki/Angular%E7%99%BB%E5%BD%95%E7%A4%BA%E4%BE%8B) 767 | 768 | [Angular 请求另一服务的api(请求代理)](https://github.com/zLulus/My_Note/wiki/Angular-%E8%AF%B7%E6%B1%82%E5%8F%A6%E4%B8%80%E6%9C%8D%E5%8A%A1%E7%9A%84api%EF%BC%88%E8%AF%B7%E6%B1%82%E4%BB%A3%E7%90%86%EF%BC%89) 769 | 770 | [angular form set dynamic control(form动态设置control)](https://github.com/zLulus/My_Note/wiki/angular-form-set-dynamic-control(form%E5%8A%A8%E6%80%81%E8%AE%BE%E7%BD%AEcontrol)) 771 | 772 | [ng-alain](https://github.com/zLulus/My_Note/wiki/ng-alain) 773 | 774 | [ng-alain 复用标签相关设置](https://github.com/zLulus/My_Note/wiki/ng-alain-%E5%A4%8D%E7%94%A8%E6%A0%87%E7%AD%BE%E7%9B%B8%E5%85%B3%E8%AE%BE%E7%BD%AE) 775 | 776 | [ng-zorro](https://github.com/zLulus/My_Note/wiki/ng-zorro) 777 | 778 | [angular对IE 6的支持问题](https://github.com/zLulus/My_Note/wiki/angular%E5%AF%B9IE-6%E7%9A%84%E6%94%AF%E6%8C%81%E9%97%AE%E9%A2%98) 779 | 780 | [Angular升级流程](https://github.com/zLulus/My_Note/wiki/Angular%E5%8D%87%E7%BA%A7%E6%B5%81%E7%A8%8B) 781 | 782 | [Angular自定义表单验证](https://github.com/zLulus/My_Note/wiki/Angular%E8%87%AA%E5%AE%9A%E4%B9%89%E8%A1%A8%E5%8D%95%E9%AA%8C%E8%AF%81) 783 | 784 | [Angular组件间的数据传输](https://github.com/zLulus/My_Note/wiki/Angular%E7%BB%84%E4%BB%B6%E9%97%B4%E7%9A%84%E6%95%B0%E6%8D%AE%E4%BC%A0%E8%BE%93) 785 | 786 | [Angular语法(四)——html循环](https://github.com/zLulus/My_Note/wiki/Angular%E8%AF%AD%E6%B3%95%EF%BC%88%E5%9B%9B%EF%BC%89%E2%80%94%E2%80%94html%E5%BE%AA%E7%8E%AF) 787 | 788 | [Angular替换服务](https://github.com/zLulus/My_Note/wiki/Angular%E6%9B%BF%E6%8D%A2%E6%9C%8D%E5%8A%A1) 789 | 790 | [ng-zorro 子菜单](https://github.com/zLulus/My_Note/wiki/ng-zorro-%E5%AD%90%E8%8F%9C%E5%8D%95) 791 | 792 | [Angular路由守卫 canDeactivate](https://github.com/zLulus/My_Note/wiki/Angular%E8%B7%AF%E7%94%B1%E5%AE%88%E5%8D%AB-canDeactivate) 793 | 794 | [Angular路由守卫 canActivate](https://github.com/zLulus/My_Note/wiki/Angular%E8%B7%AF%E7%94%B1%E5%AE%88%E5%8D%AB-canActivate) 795 | 796 | [Angular使用echarts](https://github.com/zLulus/My_Note/wiki/Angular%E4%BD%BF%E7%94%A8echarts) 797 | 798 | [Angular route传参](https://github.com/zLulus/My_Note/wiki/Angular-route%E4%BC%A0%E5%8F%82) 799 | 800 | [ngFor && index 用法](https://github.com/zLulus/My_Note/wiki/ngFor-&&-index-%E7%94%A8%E6%B3%95) 801 | 802 | [npm audit输出html报告](https://github.com/zLulus/My_Note/wiki/npm-audit%E8%BE%93%E5%87%BAhtml%E6%8A%A5%E5%91%8A) 803 | 804 | [Sonarqube与Angular集成](https://github.com/zLulus/My_Note/wiki/Sonarqube%E4%B8%8EAngular%E9%9B%86%E6%88%90)([English Version](https://github.com/zLulus/My_Note/wiki/Sonarqube-integration-with-Angular)) 805 | 806 | # TypeScript 807 | 808 | [TypeScript随手记](https://github.com/zLulus/My_Note/wiki/TypeScript%E9%9A%8F%E6%89%8B%E8%AE%B0) 809 | 810 | [TypeScript环境搭建](https://github.com/zLulus/My_Note/wiki/TypeScript%E7%8E%AF%E5%A2%83%E6%90%AD%E5%BB%BA) 811 | 812 | [TypeScript数据结构](https://github.com/zLulus/My_Note/wiki/TypeScript%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84) 813 | 814 | [typescript调用javascript && URI.js](https://github.com/zLulus/My_Note/wiki/typescript%E8%B0%83%E7%94%A8javascript-&&-URI.js) 815 | 816 | [合并 && 还原属性链](https://github.com/zLulus/My_Note/wiki/%E5%90%88%E5%B9%B6-&&-%E8%BF%98%E5%8E%9F%E5%B1%9E%E6%80%A7%E9%93%BE) 817 | 818 | [typescript Json Convert](https://github.com/zLulus/My_Note/wiki/typescript-Json-Convert) 819 | 820 | [TypeScript 时间戳 && 日期](https://github.com/zLulus/My_Note/wiki/TypeScript-%E6%97%B6%E9%97%B4%E6%88%B3-&&-%E6%97%A5%E6%9C%9F) 821 | 822 | [TypeScript Array Remove](https://github.com/zLulus/My_Note/wiki/TypeScript-Array-Remove) 823 | 824 | # ABP 825 | [领域驱动设计(DDD)与代码规范](https://github.com/zLulus/My_Note/wiki/%E9%A2%86%E5%9F%9F%E9%A9%B1%E5%8A%A8%E8%AE%BE%E8%AE%A1%EF%BC%88DDD%EF%BC%89%E4%B8%8E%E4%BB%A3%E7%A0%81%E8%A7%84%E8%8C%83) 826 | 827 | [ABP框架——单表实体流程](https://github.com/zLulus/My_Note/wiki/ABP%E6%A1%86%E6%9E%B6%E2%80%94%E2%80%94%E5%8D%95%E8%A1%A8%E5%AE%9E%E4%BD%93%E6%B5%81%E7%A8%8B) 828 | 829 | [abp.message](https://github.com/zLulus/My_Note/wiki/abp.message) 830 | 831 | [ABP杂谈](https://github.com/zLulus/My_Note/wiki/ABP%E6%9D%82%E8%B0%88) 832 | 833 | [ABP缓存示例](https://github.com/zLulus/My_Note/wiki/ABP%E7%BC%93%E5%AD%98%E7%A4%BA%E4%BE%8B) 834 | 835 | [abp项目 从sql server迁移至mysql](https://github.com/zLulus/My_Note/wiki/abp%E9%A1%B9%E7%9B%AE-%E4%BB%8Esql-server%E8%BF%81%E7%A7%BB%E8%87%B3mysql) 836 | 837 | [abp框架扩展系统表](https://github.com/zLulus/My_Note/wiki/abp%E6%A1%86%E6%9E%B6%E6%89%A9%E5%B1%95%E7%B3%BB%E7%BB%9F%E8%A1%A8) 838 | 839 | [abp框架(aspnetboilerplate)设置前端报错显示](https://github.com/zLulus/My_Note/wiki/abp%E6%A1%86%E6%9E%B6(aspnetboilerplate)%E8%AE%BE%E7%BD%AE%E5%89%8D%E7%AB%AF%E6%8A%A5%E9%94%99%E6%98%BE%E7%A4%BA) 840 | 841 | [aspnetboilerplate && .net core 使用原生sql](https://github.com/zLulus/My_Note/wiki/aspnetboilerplate--&&--.net-core-%E4%BD%BF%E7%94%A8%E5%8E%9F%E7%94%9Fsql) 842 | 843 | # html 844 | [html常用](https://github.com/zLulus/My_Note/wiki/html%E5%B8%B8%E7%94%A8) 845 | 846 | [各个控件说明](https://github.com/zLulus/My_Note/wiki/%E5%90%84%E4%B8%AA%E6%8E%A7%E4%BB%B6%E8%AF%B4%E6%98%8E) 847 | 848 | [DOCTYPE](https://github.com/zLulus/My_Note/wiki/DOCTYPE) 849 | 850 | [src与href的区别(转载)](https://github.com/zLulus/My_Note/wiki/src%E4%B8%8Ehref%E7%9A%84%E5%8C%BA%E5%88%AB%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 851 | 852 | [Html 空格与换行](https://github.com/zLulus/My_Note/wiki/Html-%E7%A9%BA%E6%A0%BC%E4%B8%8E%E6%8D%A2%E8%A1%8C) 853 | 854 | [跳转页面(转载)](https://github.com/zLulus/My_Note/wiki/%E8%B7%B3%E8%BD%AC%E9%A1%B5%E9%9D%A2%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 855 | 856 | [html 自制属性](https://github.com/zLulus/My_Note/wiki/html-%E8%87%AA%E5%88%B6%E5%B1%9E%E6%80%A7) 857 | 858 | [图片居中](https://github.com/zLulus/My_Note/wiki/%E5%9B%BE%E7%89%87%E5%B1%85%E4%B8%AD) 859 | 860 | [html5 前端存储数据的方式](https://github.com/zLulus/My_Note/wiki/html5-%E5%89%8D%E7%AB%AF%E5%AD%98%E5%82%A8%E6%95%B0%E6%8D%AE%E7%9A%84%E6%96%B9%E5%BC%8F) 861 | 862 | [网页调用本地程序——url protocol](https://github.com/zLulus/My_Note/wiki/%E7%BD%91%E9%A1%B5%E8%B0%83%E7%94%A8%E6%9C%AC%E5%9C%B0%E7%A8%8B%E5%BA%8F%E2%80%94%E2%80%94url-protocol) 863 | 864 | # css 865 | [css盒子模型](https://github.com/zLulus/My_Note/wiki/css%E7%9B%92%E5%AD%90%E6%A8%A1%E5%9E%8B) 866 | 867 | # sql 868 | sql在各数据库语法略有不同,以下主要以sql server数据库为主进行说明 869 | 870 | [sql like N'%...%' 在C#里的写法](https://github.com/zLulus/My_Note/wiki/sql-like-N'%25...%25'-%E5%9C%A8C%23%E9%87%8C%E7%9A%84%E5%86%99%E6%B3%95) 871 | 872 | [sql 循环 随机数创建数据](https://github.com/zLulus/My_Note/wiki/sql-%E5%BE%AA%E7%8E%AF-%E9%9A%8F%E6%9C%BA%E6%95%B0%E5%88%9B%E5%BB%BA%E6%95%B0%E6%8D%AE) 873 | 874 | [使用StringBuilder与SqlParameter](https://github.com/zLulus/My_Note/wiki/%E4%BD%BF%E7%94%A8StringBuilder%E4%B8%8ESqlParameter) 875 | 876 | [跨库查询数据](https://github.com/zLulus/My_Note/wiki/%E8%B7%A8%E5%BA%93%E6%9F%A5%E8%AF%A2%E6%95%B0%E6%8D%AE) 877 | 878 | [sql 多列求和](https://github.com/zLulus/My_Note/wiki/sql-%E5%A4%9A%E5%88%97%E6%B1%82%E5%92%8C) 879 | 880 | [sql SCOPE_IDENTITY()](https://github.com/zLulus/My_Note/wiki/SCOPE_IDENTITY()) 881 | 882 | [SQL Server bit<->int](https://github.com/zLulus/My_Note/wiki/SQL-Server-bit%E6%95%B0%E6%8D%AE%E7%B1%BB%E5%9E%8B) 883 | 884 | [sql 1=1](https://github.com/zLulus/My_Note/wiki/sql-1=1) 885 | 886 | [通配符](https://github.com/zLulus/My_Note/wiki/%E9%80%9A%E9%85%8D%E7%AC%A6) 887 | 888 | [典型示例](https://github.com/zLulus/My_Note/wiki/%E5%85%B8%E5%9E%8B%E7%A4%BA%E4%BE%8B) 889 | 890 | [子查询:相关子查询、无关子查询](https://github.com/zLulus/My_Note/wiki/%E5%AD%90%E6%9F%A5%E8%AF%A2%EF%BC%9A%E7%9B%B8%E5%85%B3%E5%AD%90%E6%9F%A5%E8%AF%A2%E3%80%81%E6%97%A0%E5%85%B3%E5%AD%90%E6%9F%A5%E8%AF%A2) 891 | 892 | [sql in(inner join)](https://github.com/zLulus/My_Note/wiki/sql-in(inner-join)) 893 | 894 | [sql count(1)不要和查询数据混用 非常耗时](https://github.com/zLulus/My_Note/wiki/sql-count(1)%E4%B8%8D%E8%A6%81%E5%92%8C%E6%9F%A5%E8%AF%A2%E6%95%B0%E6%8D%AE%E6%B7%B7%E7%94%A8--%E9%9D%9E%E5%B8%B8%E8%80%97%E6%97%B6) 895 | 896 | [查询SQL Server执行过的SQL语句(转载)](https://github.com/zLulus/My_Note/wiki/%E6%9F%A5%E8%AF%A2SQL-Server%E6%89%A7%E8%A1%8C%E8%BF%87%E7%9A%84SQL%E8%AF%AD%E5%8F%A5%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 897 | 898 | [防止SQL注入](https://github.com/zLulus/My_Note/wiki/%E9%98%B2%E6%AD%A2SQL%E6%B3%A8%E5%85%A5) 899 | 900 | [union和union all的区别](https://github.com/zLulus/My_Note/wiki/union%E5%92%8Cunion-all%E7%9A%84%E5%8C%BA%E5%88%AB) 901 | 902 | [in和exsist](https://github.com/zLulus/My_Note/wiki/in%E5%92%8Cexsist) 903 | 904 | [sql join详解](https://github.com/zLulus/My_Note/wiki/sql%20join%E8%AF%A6%E8%A7%A3) 905 | 906 | [sql 分组取最大值](https://github.com/zLulus/My_Note/wiki/sql-%E5%88%86%E7%BB%84%E5%8F%96%E6%9C%80%E5%A4%A7%E5%80%BC) 907 | 908 | [sql AND & OR & ()运算符优先级](https://github.com/zLulus/My_Note/wiki/sql-AND-&-OR-&-()%E8%BF%90%E7%AE%97%E7%AC%A6%E4%BC%98%E5%85%88%E7%BA%A7) 909 | 910 | [根据某条件批量修改表](https://github.com/zLulus/My_Note/wiki/%E6%A0%B9%E6%8D%AE%E6%9F%90%E6%9D%A1%E4%BB%B6%E6%89%B9%E9%87%8F%E4%BF%AE%E6%94%B9%E8%A1%A8) 911 | 912 | ## SQL基础 913 | [SQL语句类型](https://github.com/zLulus/My_Note/wiki/SQL%E8%AF%AD%E5%8F%A5%E7%B1%BB%E5%9E%8B) 914 | 915 | [SQL语句——数据定义](https://github.com/zLulus/My_Note/wiki/SQL%E8%AF%AD%E5%8F%A5%E2%80%94%E2%80%94%E6%95%B0%E6%8D%AE%E5%AE%9A%E4%B9%89) 916 | 917 | [SQL语句——数据操纵](https://github.com/zLulus/My_Note/wiki/SQL%E8%AF%AD%E5%8F%A5%E2%80%94%E2%80%94%E6%95%B0%E6%8D%AE%E6%93%8D%E7%BA%B5) 918 | 919 | [SQL语句——数据控制](https://github.com/zLulus/My_Note/wiki/SQL%E8%AF%AD%E5%8F%A5%E2%80%94%E2%80%94%E6%95%B0%E6%8D%AE%E6%8E%A7%E5%88%B6) 920 | 921 | [SQL规范](https://github.com/zLulus/My_Note/wiki/SQL%E8%A7%84%E8%8C%83) 922 | 923 | ###### sql server sql 924 | 925 | [sql 变量](https://github.com/zLulus/My_Note/wiki/sql-%E5%8F%98%E9%87%8F) 926 | 927 | [SQL NULL](https://github.com/zLulus/My_Note/wiki/SQL-NULL) 928 | 929 | [sql 空间数据](https://github.com/zLulus/My_Note/wiki/sql-%E7%A9%BA%E9%97%B4%E6%95%B0%E6%8D%AE) 930 | 931 | [sql 数据库&表备份与还原](https://github.com/zLulus/My_Note/wiki/sql-%E6%95%B0%E6%8D%AE%E5%BA%93&%E8%A1%A8%E5%A4%87%E4%BB%BD%E4%B8%8E%E8%BF%98%E5%8E%9F) 932 | 933 | # 数据库 934 | [数据库关系](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E5%85%B3%E7%B3%BB) 935 | 936 | [数据库系统体系结构](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E7%B3%BB%E7%BB%9F%E4%BD%93%E7%B3%BB%E7%BB%93%E6%9E%84) 937 | 938 | [数据库连接池](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E8%BF%9E%E6%8E%A5%E6%B1%A0) 939 | 940 | ## 关系型数据库 941 | 942 | [数据库设计三大范式](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E8%AE%BE%E8%AE%A1%E4%B8%89%E5%A4%A7%E8%8C%83%E5%BC%8F) 943 | 944 | [ACID规则](https://github.com/zLulus/My_Note/wiki/ACID%E8%A7%84%E5%88%99) 945 | 946 | [ER模型与关系模型](https://github.com/zLulus/My_Note/wiki/ER%E6%A8%A1%E5%9E%8B%E4%B8%8E%E5%85%B3%E7%B3%BB%E6%A8%A1%E5%9E%8B) 947 | 948 | [varchar和char](https://github.com/zLulus/My_Note/wiki/varchar%E5%92%8Cchar) 949 | 950 | [sql server 查询存储过程指令](https://github.com/zLulus/My_Note/wiki/sql-server-%E6%9F%A5%E8%AF%A2%E5%AD%98%E5%82%A8%E8%BF%87%E7%A8%8B%E6%8C%87%E4%BB%A4) 951 | 952 | [数据库操作 连接/增删改查/断开](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E6%93%8D%E4%BD%9C-%E8%BF%9E%E6%8E%A5-%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5-%E6%96%AD%E5%BC%80) 953 | 954 | [数据表访问](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E8%A1%A8%E8%AE%BF%E9%97%AE) 955 | 956 | [关系数据库的数据迁移](https://github.com/zLulus/My_Note/wiki/%E5%85%B3%E7%B3%BB%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E6%95%B0%E6%8D%AE%E8%BF%81%E7%A7%BB) 957 | 958 | [存储过程Procedure](https://github.com/zLulus/My_Note/wiki/%E5%AD%98%E5%82%A8%E8%BF%87%E7%A8%8BProcedure) 959 | 960 | [特殊存储过程——触发器Trigger](https://github.com/zLulus/My_Note/wiki/%E7%89%B9%E6%AE%8A%E5%AD%98%E5%82%A8%E8%BF%87%E7%A8%8B%E2%80%94%E2%80%94%E8%A7%A6%E5%8F%91%E5%99%A8Trigger) 961 | 962 | [自定义函数Function](https://github.com/zLulus/My_Note/wiki/%E8%87%AA%E5%AE%9A%E4%B9%89%E5%87%BD%E6%95%B0Function) 963 | 964 | [主从同步](https://github.com/zLulus/My_Note/wiki/%E4%B8%BB%E4%BB%8E%E5%90%8C%E6%AD%A5) 965 | 966 | [VS创建新的本地数据库](https://github.com/zLulus/My_Note/wiki/VS%E5%88%9B%E5%BB%BA%E6%96%B0%E7%9A%84%E6%9C%AC%E5%9C%B0%E6%95%B0%E6%8D%AE%E5%BA%93) 967 | 968 | [函数与存储过程的区别](https://github.com/zLulus/My_Note/wiki/%E5%87%BD%E6%95%B0%E4%B8%8E%E5%AD%98%E5%82%A8%E8%BF%87%E7%A8%8B%E7%9A%84%E5%8C%BA%E5%88%AB) 969 | 970 | [视图View](https://github.com/zLulus/My_Note/wiki/%E8%A7%86%E5%9B%BEView) 971 | 972 | [索引Index](https://github.com/zLulus/My_Note/wiki/%E7%B4%A2%E5%BC%95Index) 973 | 974 | [约束Constraints](https://github.com/zLulus/My_Note/wiki/%E7%BA%A6%E6%9D%9FConstraints) 975 | 976 | [索引与约束的区别](https://github.com/zLulus/My_Note/wiki/%E7%B4%A2%E5%BC%95%E4%B8%8E%E7%BA%A6%E6%9D%9F%E7%9A%84%E5%8C%BA%E5%88%AB) 977 | 978 | [外键Foreign Keys](https://github.com/zLulus/My_Note/wiki/%E5%A4%96%E9%94%AEForeign-Keys) 979 | 980 | [删除数据库依赖项与被依赖项](https://github.com/zLulus/My_Note/wiki/%E5%88%A0%E9%99%A4%E6%95%B0%E6%8D%AE%E5%BA%93%E4%BE%9D%E8%B5%96%E9%A1%B9%E4%B8%8E%E8%A2%AB%E4%BE%9D%E8%B5%96%E9%A1%B9) 981 | 982 | [级联删除、更新](https://github.com/zLulus/My_Note/wiki/%E7%BA%A7%E8%81%94%E5%88%A0%E9%99%A4%E3%80%81%E6%9B%B4%E6%96%B0) 983 | 984 | [数据库的设计原则](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E8%AE%BE%E8%AE%A1%E5%8E%9F%E5%88%99) 985 | 986 | [数据库优化](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E4%BC%98%E5%8C%96) 987 | 988 | [Dapper简介](https://github.com/zLulus/My_Note/wiki/Dapper%E7%AE%80%E4%BB%8B) 989 | 990 | [数据库操纵基本思路](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E6%93%8D%E7%BA%B5%E5%9F%BA%E6%9C%AC%E6%80%9D%E8%B7%AF) 991 | 992 | [数据库引擎](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E5%BC%95%E6%93%8E) 993 | 994 | [java数据库连接(JDBC)](https://github.com/zLulus/My_Note/wiki/java%E6%95%B0%E6%8D%AE%E5%BA%93%E8%BF%9E%E6%8E%A5) 995 | 996 | [锁](https://github.com/zLulus/My_Note/wiki/%E9%94%81) 997 | 998 | [死锁](https://github.com/zLulus/My_Note/wiki/%E6%AD%BB%E9%94%81) 999 | 1000 | [事务](https://github.com/zLulus/My_Note/wiki/%E4%BA%8B%E5%8A%A1) 1001 | 1002 | [回滚rollback](https://github.com/zLulus/My_Note/wiki/%E5%9B%9E%E6%BB%9Arollback) 1003 | 1004 | [数据库日志](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E6%97%A5%E5%BF%97) 1005 | 1006 | [Sql Server & Mysql对比](https://github.com/zLulus/My_Note/wiki/Sql-Server-&-Mysql%E5%AF%B9%E6%AF%94) 1007 | 1008 | [游标](https://github.com/zLulus/My_Note/wiki/%E6%B8%B8%E6%A0%87) 1009 | 1010 | [数据抽象](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E6%8A%BD%E8%B1%A1) 1011 | 1012 | #### 历史数据处理 & 集群 & 分布式 1013 | [历史数据处理](https://github.com/zLulus/My_Note/wiki/%E5%8E%86%E5%8F%B2%E6%95%B0%E6%8D%AE%E5%A4%84%E7%90%86) 1014 | 1015 | [水平数据分区、垂直数据分区和功能数据分区](https://github.com/zLulus/My_Note/wiki/%E6%B0%B4%E5%B9%B3%E6%95%B0%E6%8D%AE%E5%88%86%E5%8C%BA%E3%80%81%E5%9E%82%E7%9B%B4%E6%95%B0%E6%8D%AE%E5%88%86%E5%8C%BA%E5%92%8C%E5%8A%9F%E8%83%BD%E6%95%B0%E6%8D%AE%E5%88%86%E5%8C%BA) 1016 | 1017 | [数据库集群](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E9%9B%86%E7%BE%A4) 1018 | 1019 | #### SQL Server 1020 | 1021 | [工具:sql server profiler(分析器)](https://github.com/zLulus/My_Note/wiki/%E5%B7%A5%E5%85%B7%EF%BC%9Asql-server-profiler%EF%BC%88%E5%88%86%E6%9E%90%E5%99%A8%EF%BC%89) 1022 | 1023 | [工具:SQL Server执行计划](https://github.com/zLulus/My_Note/wiki/%E5%B7%A5%E5%85%B7%EF%BC%9ASQL-Server%E6%89%A7%E8%A1%8C%E8%AE%A1%E5%88%92) 1024 | 1025 | [sql server DateTime与DateTime2的区别](https://github.com/zLulus/My_Note/wiki/sql-server--DateTime%E4%B8%8EDateTime2%E7%9A%84%E5%8C%BA%E5%88%AB) 1026 | 1027 | [SQL Server数据库碎片整理](https://github.com/zLulus/My_Note/wiki/SQL-Server%E6%95%B0%E6%8D%AE%E5%BA%93%E7%A2%8E%E7%89%87%E6%95%B4%E7%90%86) 1028 | 1029 | [SQL Server查询当前连接数](https://github.com/zLulus/My_Note/wiki/SQL-Server%E6%9F%A5%E8%AF%A2%E5%BD%93%E5%89%8D%E8%BF%9E%E6%8E%A5%E6%95%B0) 1030 | 1031 | [大量删除的表、查询卡顿的表,重建索引](https://github.com/zLulus/My_Note/wiki/%E5%A4%A7%E9%87%8F%E5%88%A0%E9%99%A4%E7%9A%84%E8%A1%A8%E3%80%81%E6%9F%A5%E8%AF%A2%E5%8D%A1%E9%A1%BF%E7%9A%84%E8%A1%A8%EF%BC%8C%E9%87%8D%E5%BB%BA%E7%B4%A2%E5%BC%95) 1032 | 1033 | [查询表情况](https://github.com/zLulus/My_Note/wiki/%E6%9F%A5%E8%AF%A2%E8%A1%A8%E6%83%85%E5%86%B5) 1034 | 1035 | [日志文件 清理or压缩](https://github.com/zLulus/My_Note/wiki/%E6%97%A5%E5%BF%97%E6%96%87%E4%BB%B6--%E6%B8%85%E7%90%86or%E5%8E%8B%E7%BC%A9) 1036 | 1037 | [数据库新增用户(限定访问数据库)](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E5%BA%93%E6%96%B0%E5%A2%9E%E7%94%A8%E6%88%B7(%E9%99%90%E5%AE%9A%E8%AE%BF%E9%97%AE%E6%95%B0%E6%8D%AE%E5%BA%93)) 1038 | 1039 | [sql server使用正则表达式](https://github.com/zLulus/My_Note/wiki/sql-server%E4%BD%BF%E7%94%A8%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F) 1040 | 1041 | [sql server 开启远程访问](https://github.com/zLulus/My_Note/wiki/sql-server-%E5%BC%80%E5%90%AF%E8%BF%9C%E7%A8%8B%E8%AE%BF%E9%97%AE) 1042 | 1043 | [SQL Server PARTITION FUNCTION(分区)](https://github.com/zLulus/My_Note/wiki/SQL-Server-PARTITION-FUNCTION(%E5%88%86%E5%8C%BA)) 1044 | 1045 | [sql server空间数据](https://github.com/zLulus/My_Note/wiki/sql-server%E7%A9%BA%E9%97%B4%E6%95%B0%E6%8D%AE) 1046 | 1047 | [sql server & .net core 使用空间数据](https://github.com/zLulus/My_Note/wiki/sql-server-&-.net-core-%E4%BD%BF%E7%94%A8%E7%A9%BA%E9%97%B4%E6%95%B0%E6%8D%AE) 1048 | 1049 | [SQL Server 查询默认值是否存在](https://github.com/zLulus/My_Note/wiki/SQL-Server-%E6%9F%A5%E8%AF%A2%E9%BB%98%E8%AE%A4%E5%80%BC%E6%98%AF%E5%90%A6%E5%AD%98%E5%9C%A8) 1050 | 1051 | [SQL Server 查询列是否存在](https://github.com/zLulus/My_Note/wiki/SQL-Server-%E6%9F%A5%E8%AF%A2%E5%88%97%E6%98%AF%E5%90%A6%E5%AD%98%E5%9C%A8) 1052 | 1053 | [SQL Server 重命名列](https://github.com/zLulus/My_Note/wiki/SQL-Server-%E9%87%8D%E5%91%BD%E5%90%8D%E5%88%97) 1054 | 1055 | #### Oracle 1056 | [Oracle 连接的问题](https://github.com/zLulus/My_Note/wiki/Oracle-%E8%BF%9E%E6%8E%A5%E7%9A%84%E9%97%AE%E9%A2%98) 1057 | 1058 | [Oracle sql](https://github.com/zLulus/My_Note/wiki/Oracle-sql) 1059 | 1060 | [Oracle 导出 & 导入](https://github.com/zLulus/My_Note/wiki/Oracle-%E5%AF%BC%E5%87%BA-&-%E5%AF%BC%E5%85%A5) 1061 | 1062 | [Oracle : ORA 00933: SQL command not properly ended](https://github.com/zLulus/My_Note/wiki/Oracle-:-ORA-00933:-SQL-command-not-properly-ended) 1063 | 1064 | [使用Oracle OracleBulkCopy遇到的问题](https://github.com/zLulus/My_Note/wiki/%E4%BD%BF%E7%94%A8Oracle-OracleBulkCopy%E9%81%87%E5%88%B0%E7%9A%84%E9%97%AE%E9%A2%98) 1065 | 1066 | #### Mysql 1067 | [Mysql存储引擎](https://github.com/zLulus/My_Note/wiki/Mysql%E5%AD%98%E5%82%A8%E5%BC%95%E6%93%8E) 1068 | 1069 | [Mysql 开启远程连接](https://github.com/zLulus/My_Note/wiki/Mysql-%E5%BC%80%E5%90%AF%E8%BF%9C%E7%A8%8B%E8%BF%9E%E6%8E%A5) 1070 | 1071 | [MySQL 执行原生sql](https://github.com/zLulus/My_Note/wiki/MySQL-%E6%89%A7%E8%A1%8C%E5%8E%9F%E7%94%9Fsql) 1072 | 1073 | [MySql常用内容](https://github.com/zLulus/My_Note/wiki/MySql%E5%B8%B8%E7%94%A8%E5%86%85%E5%AE%B9) 1074 | 1075 | [mysql: The target table of the UPDATE is not updatable](https://github.com/zLulus/My_Note/wiki/mysql:-The-target-table-of-the-UPDATE-is-not-updatable) 1076 | 1077 | [Mysql 使用mysqldump进行备份与还原](https://github.com/zLulus/My_Note/wiki/Mysql-%E4%BD%BF%E7%94%A8mysqldump%E8%BF%9B%E8%A1%8C%E5%A4%87%E4%BB%BD%E4%B8%8E%E8%BF%98%E5%8E%9F) 1078 | 1079 | [Mysql 查询执行计划](https://github.com/zLulus/My_Note/wiki/Mysql-%E6%9F%A5%E8%AF%A2%E6%89%A7%E8%A1%8C%E8%AE%A1%E5%88%92) 1080 | 1081 | [mysql blob类型的查询和更新](https://github.com/zLulus/My_Note/wiki/mysql-blob%E7%B1%BB%E5%9E%8B%E7%9A%84%E6%9F%A5%E8%AF%A2%E5%92%8C%E6%9B%B4%E6%96%B0) 1082 | 1083 | [MySQL 死锁](https://github.com/zLulus/My_Note/wiki/MySQL-%E6%AD%BB%E9%94%81) 1084 | 1085 | [MySQL 迁移数据库](https://github.com/zLulus/My_Note/wiki/MySQL-%E8%BF%81%E7%A7%BB%E6%95%B0%E6%8D%AE%E5%BA%93) 1086 | 1087 | [MySQL 设置max_allowed_packet](https://github.com/zLulus/My_Note/wiki/MySQL-%E8%AE%BE%E7%BD%AEmax_allowed_packet) 1088 | 1089 | #### SQLite 1090 | 1091 | [SQLite基础](https://github.com/zLulus/My_Note/wiki/SQLite%E5%9F%BA%E7%A1%80) 1092 | 1093 | [ef core 连接sqlite](https://github.com/zLulus/My_Note/wiki/ef-core-%E8%BF%9E%E6%8E%A5sqlite) 1094 | 1095 | [Sqlite常用内容](https://github.com/zLulus/My_Note/wiki/Sqlite%E5%B8%B8%E7%94%A8%E5%86%85%E5%AE%B9) 1096 | 1097 | [sqlite 建表](https://github.com/zLulus/My_Note/wiki/sqlite-%E5%BB%BA%E8%A1%A8) 1098 | 1099 | [sqlite 加密与连接](https://github.com/zLulus/My_Note/wiki/sqlite-%E5%8A%A0%E5%AF%86%E4%B8%8E%E8%BF%9E%E6%8E%A5) 1100 | 1101 | #### Postgresql 1102 | 1103 | [Postgresql入门](https://github.com/zLulus/My_Note/wiki/Postgresql%E5%85%A5%E9%97%A8) 1104 | 1105 | [postgresql && .net core 使用空间数据](https://github.com/zLulus/My_Note/wiki/postgresql-&&-.net-core-%E4%BD%BF%E7%94%A8%E7%A9%BA%E9%97%B4%E6%95%B0%E6%8D%AE) 1106 | 1107 | [PostgreSQL && PostGIS](https://github.com/zLulus/My_Note/wiki/PostgreSQL-&&-PostGIS) 1108 | 1109 | ## 非关系型数据库 1110 | 1111 | [CAP定理](https://github.com/zLulus/My_Note/wiki/CAP%E5%AE%9A%E7%90%86) 1112 | 1113 | [NoSQL](https://github.com/zLulus/My_Note/wiki/NoSQL) 1114 | 1115 | #### MongoDB 1116 | 1117 | [MongoDB](https://github.com/zLulus/My_Note/wiki/MongoDB) 1118 | 1119 | [MongoDB 增删改查基本操作](https://github.com/zLulus/My_Note/wiki/MongoDB-%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5%E5%9F%BA%E6%9C%AC%E6%93%8D%E4%BD%9C) 1120 | 1121 | # EF 1122 | [EF性能优化](https://github.com/zLulus/My_Note/wiki/EF%E6%80%A7%E8%83%BD%E4%BC%98%E5%8C%96) 1123 | 1124 | [EF延迟加载LazyLoading](https://github.com/zLulus/My_Note/wiki/EF%E5%BB%B6%E8%BF%9F%E5%8A%A0%E8%BD%BDLazyLoading) 1125 | 1126 | [EF相关报错](https://github.com/zLulus/My_Note/wiki/EF%E7%9B%B8%E5%85%B3%E6%8A%A5%E9%94%99) 1127 | 1128 | [EF 事务](https://github.com/zLulus/My_Note/wiki/EF-%E4%BA%8B%E5%8A%A1) 1129 | 1130 | [Entity相互关系](https://github.com/zLulus/My_Note/wiki/Entity%E7%9B%B8%E4%BA%92%E5%85%B3%E7%B3%BB) 1131 | 1132 | [Entity种类(动态代理)](https://github.com/zLulus/My_Note/wiki/Entity%E7%A7%8D%E7%B1%BB%EF%BC%88%E5%8A%A8%E6%80%81%E4%BB%A3%E7%90%86%EF%BC%89) 1133 | 1134 | [DbContext](https://github.com/zLulus/My_Note/wiki/DbContext) 1135 | 1136 | [Entity States](https://github.com/zLulus/My_Note/wiki/Entity-States) 1137 | 1138 | [连接数据库报错:句柄无效](https://github.com/zLulus/My_Note/wiki/%E8%BF%9E%E6%8E%A5%E6%95%B0%E6%8D%AE%E5%BA%93%E6%8A%A5%E9%94%99%EF%BC%9A%E5%8F%A5%E6%9F%84%E6%97%A0%E6%95%88) 1139 | 1140 | [linq to entity group by 时间](https://github.com/zLulus/My_Note/wiki/linq-to-entity-group-by-%E6%97%B6%E9%97%B4) 1141 | 1142 | [Mysql EF 数据录入&批量数据录入](https://github.com/zLulus/My_Note/wiki/Mysql-EF-%E6%95%B0%E6%8D%AE%E5%BD%95%E5%85%A5&%E6%89%B9%E9%87%8F%E6%95%B0%E6%8D%AE%E5%BD%95%E5%85%A5) 1143 | 1144 | [Sql Server EF 批量数据录入](https://github.com/zLulus/My_Note/wiki/Sql-Server-EF-%E6%89%B9%E9%87%8F%E6%95%B0%E6%8D%AE%E5%BD%95%E5%85%A5) 1145 | 1146 | ## Code First 1147 | [EF Code First 快速创建](https://github.com/zLulus/My_Note/wiki/EF-Code-First-%E5%BF%AB%E9%80%9F%E5%88%9B%E5%BB%BA) 1148 | 1149 | [Code First 连接已有数据库](https://github.com/zLulus/My_Note/wiki/Code-First-%E8%BF%9E%E6%8E%A5%E5%B7%B2%E6%9C%89%E6%95%B0%E6%8D%AE%E5%BA%93) 1150 | 1151 | [ef code first 在不同分支之间的管理](https://github.com/zLulus/My_Note/wiki/ef-code-first-%E5%9C%A8%E4%B8%8D%E5%90%8C%E5%88%86%E6%94%AF%E4%B9%8B%E9%97%B4%E7%9A%84%E7%AE%A1%E7%90%86) 1152 | 1153 | ## DB First 1154 | [生成EF后修改最大长度限制等](https://github.com/zLulus/My_Note/wiki/%E7%94%9F%E6%88%90EF%E5%90%8E%E4%BF%AE%E6%94%B9%E6%9C%80%E5%A4%A7%E9%95%BF%E5%BA%A6%E9%99%90%E5%88%B6%E7%AD%89) 1155 | 1156 | [更新EF(更新表 添加表…)](https://github.com/zLulus/My_Note/wiki/%E6%9B%B4%E6%96%B0EF%EF%BC%88%E6%9B%B4%E6%96%B0%E8%A1%A8-%E6%B7%BB%E5%8A%A0%E8%A1%A8%E2%80%A6%EF%BC%89) 1157 | 1158 | [DB First .edmx](https://github.com/zLulus/My_Note/wiki/DB-First--.edmx) 1159 | 1160 | [DB First-EF中的存储过程、函数、视图](https://github.com/zLulus/My_Note/wiki/DB-First-EF%E4%B8%AD%E7%9A%84%E5%AD%98%E5%82%A8%E8%BF%87%E7%A8%8B%E3%80%81%E5%87%BD%E6%95%B0%E3%80%81%E8%A7%86%E5%9B%BE) 1161 | 1162 | ## EF Core 1163 | [ef core code first from exist db](https://github.com/zLulus/My_Note/wiki/ef-core-code-first-from-exist-db) 1164 | 1165 | [ef core 数据类型 && 表字段名设置](https://github.com/zLulus/My_Note/wiki/ef-core-%E6%95%B0%E6%8D%AE%E7%B1%BB%E5%9E%8B-&&-%E8%A1%A8%E5%AD%97%E6%AE%B5%E5%90%8D%E8%AE%BE%E7%BD%AE) 1166 | 1167 | [EntityFrameworkCore 一对一 && 一对多 && 多对多配置](https://github.com/zLulus/My_Note/wiki/EntityFrameworkCore-%E4%B8%80%E5%AF%B9%E4%B8%80-&&-%E4%B8%80%E5%AF%B9%E5%A4%9A-&&-%E5%A4%9A%E5%AF%B9%E5%A4%9A%E9%85%8D%E7%BD%AE) 1168 | 1169 | [EntityFrameworkCore 一表对多表存在外键的设计](https://github.com/zLulus/My_Note/wiki/EntityFrameworkCore-%E4%B8%80%E8%A1%A8%E5%AF%B9%E5%A4%9A%E8%A1%A8%E5%AD%98%E5%9C%A8%E5%A4%96%E9%94%AE%E7%9A%84%E8%AE%BE%E8%AE%A1) 1170 | 1171 | [EntityFrameworkCore 单表树状结构配置](https://github.com/zLulus/My_Note/wiki/EntityFrameworkCore-%E5%8D%95%E8%A1%A8%E6%A0%91%E7%8A%B6%E7%BB%93%E6%9E%84%E9%85%8D%E7%BD%AE) 1172 | 1173 | [EF && EF Core 重置迁移历史](https://github.com/zLulus/My_Note/wiki/EF-&&-EF-Core-%E9%87%8D%E7%BD%AE%E8%BF%81%E7%A7%BB%E5%8E%86%E5%8F%B2) 1174 | 1175 | [EF Core 多个DbContext迁移命令](https://github.com/zLulus/My_Note/wiki/EF-Core-%E5%A4%9A%E4%B8%AADbContext%E8%BF%81%E7%A7%BB%E5%91%BD%E4%BB%A4) 1176 | 1177 | [Entity Framework Core for Console](https://github.com/zLulus/My_Note/wiki/Entity-Framework-Core--for-Console) 1178 | 1179 | # 数据结构 1180 | 1181 | [基本数据结构](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E6%9C%AC%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84) 1182 | 1183 | [队列](https://github.com/zLulus/My_Note/wiki/%E9%98%9F%E5%88%97) 1184 | 1185 | [堆栈(栈)和堆](https://github.com/zLulus/My_Note/wiki/%E5%A0%86%E6%A0%88%EF%BC%88%E6%A0%88%EF%BC%89%E5%92%8C%E5%A0%86) 1186 | 1187 | [树](https://github.com/zLulus/My_Note/wiki/%E6%A0%91) 1188 | 1189 | [键值对Dictionary、Hashtable、KeyValuePair](https://github.com/zLulus/My_Note/wiki/%E9%94%AE%E5%80%BC%E5%AF%B9Dictionary%E3%80%81Hashtable%E3%80%81KeyValuePair) 1190 | 1191 | [哈希表(Hash Table)](https://github.com/zLulus/My_Note/wiki/%E5%93%88%E5%B8%8C%E8%A1%A8(Hash-Table)) 1192 | 1193 | # 缓存 1194 | ## Memcached 1195 | 1196 | [Memcached](https://github.com/zLulus/My_Note/wiki/Memcached) 1197 | 1198 | ## Redis 1199 | 1200 | [Redis](https://github.com/zLulus/My_Note/wiki/Redis) 1201 | 1202 | [windows下启动redis](https://github.com/zLulus/My_Note/wiki/windows%E4%B8%8B%E5%90%AF%E5%8A%A8redis) 1203 | 1204 | [Redis 与 Memcached](https://github.com/zLulus/My_Note/wiki/Redis-%E4%B8%8E-Memcached) 1205 | 1206 | # 搜索引擎 1207 | ## Elastic Search 1208 | 1209 | [搜索服务器Elasticsearch](https://github.com/zLulus/My_Note/wiki/%E6%90%9C%E7%B4%A2%E6%9C%8D%E5%8A%A1%E5%99%A8Elasticsearch) 1210 | 1211 | [Elasticsearch.Net(NEST) 设置保留请求和回复Body,并在请求结束后保留](https://github.com/zLulus/My_Note/wiki/Elasticsearch.Net(NEST)-%E8%AE%BE%E7%BD%AE%E4%BF%9D%E7%95%99%E8%AF%B7%E6%B1%82%E5%92%8C%E5%9B%9E%E5%A4%8DBody%EF%BC%8C%E5%B9%B6%E5%9C%A8%E8%AF%B7%E6%B1%82%E7%BB%93%E6%9D%9F%E5%90%8E%E5%9B%9E%E8%B0%83) 1212 | 1213 | [Elasticsearch.Net(NEST) Terms查询多字段匹配](https://github.com/zLulus/My_Note/wiki/Elasticsearch.Net(NEST)-Terms%E6%9F%A5%E8%AF%A2%E5%A4%9A%E5%AD%97%E6%AE%B5%E5%8C%B9%E9%85%8D) 1214 | 1215 | [Elasticsearch报错Result window is too large](https://github.com/zLulus/My_Note/wiki/Elasticsearch%E6%8A%A5%E9%94%99Result-window-is-too-large) 1216 | 1217 | # 操作系统 1218 | 1219 | [windows server疑难杂症](https://github.com/zLulus/My_Note/wiki/windows-server%E7%96%91%E9%9A%BE%E6%9D%82%E7%97%87) 1220 | 1221 | [利用花生壳对windows server进行远程桌面](https://github.com/zLulus/My_Note/wiki/%E5%88%A9%E7%94%A8%E8%8A%B1%E7%94%9F%E5%A3%B3%E5%AF%B9windows-server%E8%BF%9B%E8%A1%8C%E8%BF%9C%E7%A8%8B%E6%A1%8C%E9%9D%A2) 1222 | 1223 | # WPF 1224 | 1225 | ## 基本概念 1226 | 1227 | [WPF特性](https://github.com/zLulus/My_Note/wiki/WPF%E7%89%B9%E6%80%A7) 1228 | 1229 | [WPF生命周期](https://github.com/zLulus/My_Note/wiki/WPF%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F) 1230 | 1231 | [App.xaml](https://github.com/zLulus/My_Note/wiki/App.xaml) 1232 | 1233 | [WPF路由](https://github.com/zLulus/My_Note/wiki/WPF%E8%B7%AF%E7%94%B1) 1234 | 1235 | [线程操纵UI问题](https://github.com/zLulus/My_Note/wiki/%E7%BA%BF%E7%A8%8B%E6%93%8D%E7%BA%B5UI%E9%97%AE%E9%A2%98) 1236 | 1237 | [利用属性中设置、查看DataContext/Command等](https://github.com/zLulus/My_Note/wiki/%E5%88%A9%E7%94%A8%E5%B1%9E%E6%80%A7%E4%B8%AD%E8%AE%BE%E7%BD%AE%E3%80%81%E6%9F%A5%E7%9C%8BDataContext-Command%E7%AD%89) 1238 | 1239 | [分析布局](https://github.com/zLulus/My_Note/wiki/%E5%88%86%E6%9E%90%E5%B8%83%E5%B1%80) 1240 | 1241 | [写数据模板,需要重新指定数据上下文](https://github.com/zLulus/My_Note/wiki/%E5%86%99%E6%95%B0%E6%8D%AE%E6%A8%A1%E6%9D%BF%EF%BC%8C%E9%9C%80%E8%A6%81%E9%87%8D%E6%96%B0%E6%8C%87%E5%AE%9A%E6%95%B0%E6%8D%AE%E4%B8%8A%E4%B8%8B%E6%96%87) 1242 | 1243 | [StaticResource和DynamicResource](https://github.com/zLulus/My_Note/wiki/StaticResource%E5%92%8CDynamicResource) 1244 | 1245 | [DataContext和ItemSource](https://github.com/zLulus/My_Note/wiki/DataContext%E5%92%8CItemSource) 1246 | 1247 | [x:key和x:name](https://github.com/zLulus/My_Note/wiki/x:key%E5%92%8Cx:name) 1248 | 1249 | [x:Static](https://github.com/zLulus/My_Note/wiki/x:Static) 1250 | 1251 | [x:ArrayExtension](https://github.com/zLulus/My_Note/wiki/x:ArrayExtension) 1252 | 1253 | [xmlns](https://github.com/zLulus/My_Note/wiki/xmlns) 1254 | 1255 | [WPF神器:Blend for Visual Studio](https://github.com/zLulus/My_Note/wiki/WPF%E7%A5%9E%E5%99%A8%EF%BC%9ABlend-for-Visual-Studio) 1256 | 1257 | [逻辑树和视觉树](https://github.com/zLulus/My_Note/wiki/%E9%80%BB%E8%BE%91%E6%A0%91%E5%92%8C%E8%A7%86%E8%A7%89%E6%A0%91) 1258 | 1259 | [依赖属性DependencyProperty](https://github.com/zLulus/My_Note/wiki/%E4%BE%9D%E8%B5%96%E5%B1%9E%E6%80%A7DependencyProperty) 1260 | 1261 | [WPF性能优化](https://github.com/zLulus/My_Note/wiki/WPF%E6%80%A7%E8%83%BD%E4%BC%98%E5%8C%96) 1262 | 1263 | [优秀的WPF UI库](https://github.com/zLulus/My_Note/wiki/%E4%BC%98%E7%A7%80%E7%9A%84WPF-UI%E5%BA%93) 1264 | 1265 | [WPF 本地化(比如DatePicker)](https://github.com/zLulus/My_Note/wiki/WPF-%E6%9C%AC%E5%9C%B0%E5%8C%96%EF%BC%88%E6%AF%94%E5%A6%82DatePicker%EF%BC%89) 1266 | 1267 | ### Binding 1268 | 1269 | [数据绑定:数据源Source-目标Target](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%EF%BC%9A%E6%95%B0%E6%8D%AE%E6%BA%90Source-%E7%9B%AE%E6%A0%87Target) 1270 | 1271 | [Binding的详细说明](https://github.com/zLulus/My_Note/wiki/Binding%E7%9A%84%E8%AF%A6%E7%BB%86%E8%AF%B4%E6%98%8E) 1272 | 1273 | [MultiBinding](https://github.com/zLulus/My_Note/wiki/MultiBinding) 1274 | 1275 | [MultiBinding 和 Converter](https://github.com/zLulus/My_Note/wiki/MultiBinding-%E5%92%8C-Converter) 1276 | 1277 | [DependencyProperty和INotifyPropertyChanged](https://github.com/zLulus/My_Note/wiki/DependencyProperty%E5%92%8CINotifyPropertyChanged) 1278 | 1279 | [DataGrid的Converter获得每行的数据](https://github.com/zLulus/My_Note/wiki/DataGrid%E7%9A%84Converter%E8%8E%B7%E5%BE%97%E6%AF%8F%E8%A1%8C%E7%9A%84%E6%95%B0%E6%8D%AE) 1280 | 1281 | [如何Debug数据绑定](https://github.com/zLulus/My_Note/wiki/%E5%A6%82%E4%BD%95Debug%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A) 1282 | 1283 | ### 资源文件 1284 | 1285 | [资源文件的适用范围](https://github.com/zLulus/My_Note/wiki/%E8%B5%84%E6%BA%90%E6%96%87%E4%BB%B6%E7%9A%84%E9%80%82%E7%94%A8%E8%8C%83%E5%9B%B4) 1286 | 1287 | [资源文件加载(Pack URI 方案)](https://github.com/zLulus/My_Note/wiki/%E8%B5%84%E6%BA%90%E6%96%87%E4%BB%B6%E5%8A%A0%E8%BD%BD%EF%BC%88Pack-URI-%E6%96%B9%E6%A1%88%EF%BC%89) 1288 | 1289 | ## 控件 1290 | 1291 | [控件](https://github.com/zLulus/My_Note/wiki/%E6%8E%A7%E4%BB%B6) 1292 | 1293 | [Expander](https://github.com/zLulus/My_Note/wiki/Expander) 1294 | 1295 | [ToolTip](https://github.com/zLulus/My_Note/wiki/ToolTip) 1296 | 1297 | [用户控件(UserControl)](https://github.com/zLulus/My_Note/wiki/%E7%94%A8%E6%88%B7%E6%8E%A7%E4%BB%B6(UserControl)) 1298 | 1299 | [RadioButton](https://github.com/zLulus/My_Note/wiki/RadioButton) 1300 | 1301 | [ListView,ListBox,DataGrid](https://github.com/zLulus/My_Note/wiki/ListView,ListBox,DataGrid) 1302 | 1303 | [Tag](https://github.com/zLulus/My_Note/wiki/Tag) 1304 | 1305 | [CheckBox IsHitTestVisible](https://github.com/zLulus/My_Note/wiki/CheckBox--IsHitTestVisible) 1306 | 1307 | [DataGrid DataGridTemplateColumn](https://github.com/zLulus/My_Note/wiki/DataGrid-DataGridTemplateColumn) 1308 | 1309 | [Tab切换顺序设置](https://github.com/zLulus/My_Note/wiki/Tab%E5%88%87%E6%8D%A2%E9%A1%BA%E5%BA%8F%E8%AE%BE%E7%BD%AE) 1310 | 1311 | [Margin和Padding](https://github.com/zLulus/My_Note/wiki/Margin%E5%92%8CPadding) 1312 | 1313 | [VisualStateManager](https://github.com/zLulus/My_Note/wiki/VisualStateManager) 1314 | 1315 | [WPF 菜单栏ContextMenu](https://github.com/zLulus/My_Note/wiki/WPF-%E8%8F%9C%E5%8D%95%E6%A0%8FContextMenu) 1316 | 1317 | [WPF TextBlock&Label随父级控件缩放](https://github.com/zLulus/My_Note/wiki/WPF-TextBlock&Label%E9%9A%8F%E7%88%B6%E7%BA%A7%E6%8E%A7%E4%BB%B6%E7%BC%A9%E6%94%BE) 1318 | 1319 | [WPF 弹窗](https://github.com/zLulus/My_Note/wiki/WPF-%E5%BC%B9%E7%AA%97) 1320 | 1321 | [ComboBox](https://github.com/zLulus/My_Note/wiki/ComboBox) 1322 | 1323 | [ComboBox设置选项与反显](https://github.com/zLulus/My_Note/wiki/ComboBox%E8%AE%BE%E7%BD%AE%E9%80%89%E9%A1%B9%E4%B8%8E%E5%8F%8D%E6%98%BE) 1324 | 1325 | [TrreView 递归绑定数据源](https://github.com/zLulus/My_Note/wiki/TrreView-%E9%80%92%E5%BD%92%E7%BB%91%E5%AE%9A%E6%95%B0%E6%8D%AE%E6%BA%90) 1326 | 1327 | [TextBox输入小数](https://github.com/zLulus/My_Note/wiki/TextBox%E8%BE%93%E5%85%A5%E5%B0%8F%E6%95%B0) 1328 | 1329 | [ListView Header添加CheckBox](https://github.com/zLulus/My_Note/wiki/ListView-Header%E6%B7%BB%E5%8A%A0CheckBox) 1330 | 1331 | [ListBox虚拟化](https://github.com/zLulus/My_Note/wiki/ListBox%E8%99%9A%E6%8B%9F%E5%8C%96) 1332 | 1333 | ## Style 1334 | 1335 | [style原则问题](https://github.com/zLulus/My_Note/wiki/style%E5%8E%9F%E5%88%99%E9%97%AE%E9%A2%98) 1336 | 1337 | [style的继承](https://github.com/zLulus/My_Note/wiki/style%E7%9A%84%E7%BB%A7%E6%89%BF) 1338 | 1339 | [style文件的指定](https://github.com/zLulus/My_Note/wiki/style%E6%96%87%E4%BB%B6%E7%9A%84%E6%8C%87%E5%AE%9A) 1340 | 1341 | ## Template 1342 | 1343 | [Template简介](https://github.com/zLulus/My_Note/wiki/Template%E7%AE%80%E4%BB%8B) 1344 | 1345 | [ControlTemplate](https://github.com/zLulus/My_Note/wiki/ControlTemplate) 1346 | 1347 | [DataTemplate](https://github.com/zLulus/My_Note/wiki/DataTemplate) 1348 | 1349 | [DataTemplate的后端用法(动态生成控件)](https://github.com/zLulus/My_Note/wiki/DataTemplate%E7%9A%84%E5%90%8E%E7%AB%AF%E7%94%A8%E6%B3%95(%E5%8A%A8%E6%80%81%E7%94%9F%E6%88%90%E6%8E%A7%E4%BB%B6)) 1350 | 1351 | [ItemsPanelTemplate](https://github.com/zLulus/My_Note/wiki/ItemsPanelTemplate) 1352 | 1353 | [HierarchicalDataTemplate](https://github.com/zLulus/My_Note/wiki/HierarchicalDataTemplate) 1354 | 1355 | [ListView DataTemplate & ItemsControl](https://github.com/zLulus/My_Note/wiki/ListView-DataTemplate-&-ItemsControl) 1356 | 1357 | [获得Template中的控件](https://github.com/zLulus/My_Note/wiki/%E8%8E%B7%E5%BE%97Template%E4%B8%AD%E7%9A%84%E6%8E%A7%E4%BB%B6) 1358 | 1359 | [Template和ItemTemplate](https://github.com/zLulus/My_Note/wiki/Template%E5%92%8CItemTemplate) 1360 | 1361 | ## Trigger 1362 | 1363 | [Trigger](https://github.com/zLulus/My_Note/wiki/Trigger) 1364 | 1365 | [调试触发器](https://github.com/zLulus/My_Note/wiki/%E8%B0%83%E8%AF%95%E8%A7%A6%E5%8F%91%E5%99%A8) 1366 | 1367 | ## Action 1368 | [Action](https://github.com/zLulus/My_Note/wiki/Action) 1369 | 1370 | [Command 传参的几种方式](https://github.com/zLulus/My_Note/wiki/Command-%E4%BC%A0%E5%8F%82%E7%9A%84%E5%87%A0%E7%A7%8D%E6%96%B9%E5%BC%8F) 1371 | 1372 | ## 动画 1373 | [WPF 动画](https://github.com/zLulus/My_Note/wiki/WPF-%E5%8A%A8%E7%94%BB) 1374 | 1375 | [加载动画](https://github.com/zLulus/My_Note/wiki/%E5%8A%A0%E8%BD%BD%E5%8A%A8%E7%94%BB) 1376 | 1377 | ## 一些效果的实现 1378 | 1379 | [Binding控件某个属性](https://github.com/zLulus/My_Note/wiki/Binding%E6%8E%A7%E4%BB%B6%E6%9F%90%E4%B8%AA%E5%B1%9E%E6%80%A7) 1380 | 1381 | [DataGridTemplateColumn](https://github.com/zLulus/My_Note/wiki/DataGridTemplateColumn) 1382 | 1383 | [WPF DataGrid 触发器](https://github.com/zLulus/My_Note/wiki/WPF-DataGrid-%E8%A7%A6%E5%8F%91%E5%99%A8) 1384 | 1385 | [异常处理](https://github.com/zLulus/My_Note/wiki/%E5%BC%82%E5%B8%B8%E5%A4%84%E7%90%86) 1386 | 1387 | [输入异常提示](https://github.com/zLulus/My_Note/wiki/%E8%BE%93%E5%85%A5%E5%BC%82%E5%B8%B8%E6%8F%90%E7%A4%BA) 1388 | 1389 | [属性更改通知(INotifyPropertyChanged)——针对ObservableCollection](https://github.com/zLulus/My_Note/wiki/%E5%B1%9E%E6%80%A7%E6%9B%B4%E6%94%B9%E9%80%9A%E7%9F%A5%EF%BC%88INotifyPropertyChanged%EF%BC%89%E2%80%94%E2%80%94%E9%92%88%E5%AF%B9ObservableCollection) 1390 | 1391 | [Convert和RelativeSource](https://github.com/zLulus/My_Note/wiki/Convert%E5%92%8CRelativeSource) 1392 | 1393 | [窗口图标与背景](https://github.com/zLulus/My_Note/wiki/%E7%AA%97%E5%8F%A3%E5%9B%BE%E6%A0%87%E4%B8%8E%E8%83%8C%E6%99%AF) 1394 | 1395 | [测试WPF绑定bug](https://github.com/zLulus/My_Note/wiki/%E6%B5%8B%E8%AF%95WPF%E7%BB%91%E5%AE%9Abug) 1396 | 1397 | [System.Windows.Documents.Run](https://github.com/zLulus/My_Note/wiki/System.Windows.Documents.Run) 1398 | 1399 | [随时逻辑控制按钮可用不可用:没有修改时不可用](https://github.com/zLulus/My_Note/wiki/%E9%9A%8F%E6%97%B6%E9%80%BB%E8%BE%91%E6%8E%A7%E5%88%B6%E6%8C%89%E9%92%AE%E5%8F%AF%E7%94%A8%E4%B8%8D%E5%8F%AF%E7%94%A8%EF%BC%9A%E6%B2%A1%E6%9C%89%E4%BF%AE%E6%94%B9%E6%97%B6%E4%B8%8D%E5%8F%AF%E7%94%A8) 1400 | 1401 | [子窗体、主窗体传参](https://github.com/zLulus/My_Note/wiki/%E5%AD%90%E7%AA%97%E4%BD%93%E3%80%81%E4%B8%BB%E7%AA%97%E4%BD%93%E4%BC%A0%E5%8F%82) 1402 | 1403 | [DataGrid自定义复选框](https://github.com/zLulus/My_Note/wiki/DataGrid%E8%87%AA%E5%AE%9A%E4%B9%89%E5%A4%8D%E9%80%89%E6%A1%86) 1404 | 1405 | [ObjectDataProvider](https://github.com/zLulus/My_Note/wiki/ObjectDataProvider) 1406 | 1407 | [WPF无边框实现拖动效果](https://github.com/zLulus/My_Note/wiki/WPF%E6%97%A0%E8%BE%B9%E6%A1%86%E5%AE%9E%E7%8E%B0%E6%8B%96%E5%8A%A8%E6%95%88%E6%9E%9C) 1408 | 1409 | [WPF实现弹幕](https://github.com/zLulus/My_Note/wiki/WPF%E5%AE%9E%E7%8E%B0%E5%BC%B9%E5%B9%95) 1410 | 1411 | [DataGrid数据绑定](https://github.com/zLulus/My_Note/wiki/DataGrid%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A) 1412 | 1413 | [WPF DataGrid下滑动态加载数据](https://github.com/zLulus/My_Note/wiki/WPF-DataGrid%E4%B8%8B%E6%BB%91%E5%8A%A8%E6%80%81%E5%8A%A0%E8%BD%BD%E6%95%B0%E6%8D%AE) 1414 | 1415 | [UI虚拟化和数据虚拟化](https://github.com/zLulus/My_Note/wiki/UI%E8%99%9A%E6%8B%9F%E5%8C%96%E5%92%8C%E6%95%B0%E6%8D%AE%E8%99%9A%E6%8B%9F%E5%8C%96) 1416 | 1417 | [WPF 打开txt文件](https://github.com/zLulus/My_Note/wiki/WPF-%E6%89%93%E5%BC%80txt%E6%96%87%E4%BB%B6) 1418 | 1419 | [WPF 移动控件、拖动边框修改控件大小](https://github.com/zLulus/My_Note/wiki/WPF-%E7%A7%BB%E5%8A%A8%E6%8E%A7%E4%BB%B6%E3%80%81%E6%8B%96%E5%8A%A8%E8%BE%B9%E6%A1%86%E4%BF%AE%E6%94%B9%E6%8E%A7%E4%BB%B6%E5%A4%A7%E5%B0%8F) 1420 | 1421 | [wpf 打印图片](https://github.com/zLulus/My_Note/wiki/wpf-%E6%89%93%E5%8D%B0%E5%9B%BE%E7%89%87) 1422 | 1423 | [wpf 打印A3 & A4 纸张大小的图片](https://github.com/zLulus/My_Note/wiki/wpf-%E6%89%93%E5%8D%B0A3-&-A4-%E7%BA%B8%E5%BC%A0%E5%A4%A7%E5%B0%8F%E7%9A%84%E5%9B%BE%E7%89%87) 1424 | 1425 | [wpf等桌面软件 模块化与调试的问题](https://github.com/zLulus/My_Note/wiki/wpf%E7%AD%89%E6%A1%8C%E9%9D%A2%E8%BD%AF%E4%BB%B6-%E6%A8%A1%E5%9D%97%E5%8C%96%E4%B8%8E%E8%B0%83%E8%AF%95%E7%9A%84%E9%97%AE%E9%A2%98) 1426 | 1427 | [Border不响应MouseDown等点击事件](https://github.com/zLulus/My_Note/wiki/Border%E4%B8%8D%E5%93%8D%E5%BA%94MouseDown%E7%AD%89%E7%82%B9%E5%87%BB%E4%BA%8B%E4%BB%B6) 1428 | 1429 | [DataGrid 添加Button](https://github.com/zLulus/My_Note/wiki/DataGrid-%E6%B7%BB%E5%8A%A0Button) 1430 | 1431 | [wpf 进度条ProgressBar配文字](https://github.com/zLulus/My_Note/wiki/wpf-%E8%BF%9B%E5%BA%A6%E6%9D%A1ProgressBar%E9%85%8D%E6%96%87%E5%AD%97) 1432 | 1433 | [动态生成DataGrid](https://github.com/zLulus/My_Note/wiki/%E5%8A%A8%E6%80%81%E7%94%9F%E6%88%90DataGrid) 1434 | 1435 | [多用户控件间的切换](https://github.com/zLulus/My_Note/wiki/%E5%A4%9A%E7%94%A8%E6%88%B7%E6%8E%A7%E4%BB%B6%E9%97%B4%E7%9A%84%E5%88%87%E6%8D%A2) 1436 | 1437 | [wpf 树状单选&多选功能](https://github.com/zLulus/My_Note/wiki/wpf-%E6%A0%91%E7%8A%B6%E5%8D%95%E9%80%89&%E5%A4%9A%E9%80%89%E5%8A%9F%E8%83%BD) 1438 | 1439 | [使用Converter实现控件的动态显隐](https://github.com/zLulus/My_Note/wiki/%E4%BD%BF%E7%94%A8Converter%E5%AE%9E%E7%8E%B0%E6%8E%A7%E4%BB%B6%E7%9A%84%E5%8A%A8%E6%80%81%E6%98%BE%E9%9A%90) 1440 | 1441 | [动态加载用户控件](https://github.com/zLulus/My_Note/wiki/%E5%8A%A8%E6%80%81%E5%8A%A0%E8%BD%BD%E7%94%A8%E6%88%B7%E6%8E%A7%E4%BB%B6) 1442 | 1443 | [自定义内容的弹窗](https://github.com/zLulus/My_Note/wiki/%E8%87%AA%E5%AE%9A%E4%B9%89%E5%86%85%E5%AE%B9%E7%9A%84%E5%BC%B9%E7%AA%97) 1444 | 1445 | [使用Popup和TreeView实现树状下拉框](https://github.com/zLulus/My_Note/wiki/%E4%BD%BF%E7%94%A8Popup%E5%92%8CTreeView%E5%AE%9E%E7%8E%B0%E6%A0%91%E7%8A%B6%E4%B8%8B%E6%8B%89%E6%A1%86) 1446 | 1447 | [ListBox 实现多行多列定制内容显示](https://github.com/zLulus/My_Note/wiki/ListBox-%E5%AE%9E%E7%8E%B0%E5%A4%9A%E8%A1%8C%E5%A4%9A%E5%88%97%E5%AE%9A%E5%88%B6%E5%86%85%E5%AE%B9%E6%98%BE%E7%A4%BA) 1448 | 1449 | [WPF 选择文件夹](https://github.com/zLulus/My_Note/wiki/WPF-%E9%80%89%E6%8B%A9%E6%96%87%E4%BB%B6%E5%A4%B9) 1450 | 1451 | [WPF 以管理员身份运行](https://github.com/zLulus/My_Note/wiki/WPF-%E4%BB%A5%E7%AE%A1%E7%90%86%E5%91%98%E8%BA%AB%E4%BB%BD%E8%BF%90%E8%A1%8C) 1452 | 1453 | [桌面程序自动更新的思路](https://github.com/zLulus/My_Note/wiki/%E6%A1%8C%E9%9D%A2%E7%A8%8B%E5%BA%8F%E8%87%AA%E5%8A%A8%E6%9B%B4%E6%96%B0%E7%9A%84%E6%80%9D%E8%B7%AF) 1454 | 1455 | #### ShowInTaskbar 1456 | [WPF中Window的ShowInTaskbar、Owner和Topmost属性](https://github.com/zLulus/My_Note/wiki/WPF%E4%B8%ADWindow%E7%9A%84ShowInTaskbar%E3%80%81Owner%E5%92%8CTopmost%E5%B1%9E%E6%80%A7) 1457 | 1458 | [解决ShowInTaskbar=false的窗口在失去焦点后无法找到的问题](https://github.com/zLulus/My_Note/wiki/%E8%A7%A3%E5%86%B3ShowInTaskbar=false%E7%9A%84%E7%AA%97%E5%8F%A3%E5%9C%A8%E5%A4%B1%E5%8E%BB%E7%84%A6%E7%82%B9%E5%90%8E%E6%97%A0%E6%B3%95%E6%89%BE%E5%88%B0%E7%9A%84%E9%97%AE%E9%A2%98) 1459 | 1460 | [WPF MouseDown等事件不响应的问题](https://github.com/zLulus/My_Note/wiki/WPF-MouseDown%E7%AD%89%E4%BA%8B%E4%BB%B6%E4%B8%8D%E5%93%8D%E5%BA%94%E7%9A%84%E9%97%AE%E9%A2%98) 1461 | 1462 | [SetForegroundWindow()前置窗口失败的问题](https://github.com/zLulus/My_Note/wiki/SetForegroundWindow()%E5%89%8D%E7%BD%AE%E7%AA%97%E5%8F%A3%E5%A4%B1%E8%B4%A5%E7%9A%84%E9%97%AE%E9%A2%98) 1463 | 1464 | [WPF 触摸交互相关资料](https://github.com/zLulus/My_Note/wiki/WPF-%E8%A7%A6%E6%91%B8%E4%BA%A4%E4%BA%92%E7%9B%B8%E5%85%B3%E8%B5%84%E6%96%99) 1465 | 1466 | [WPF 手写板](https://github.com/zLulus/My_Note/wiki/WPF-%E6%89%8B%E5%86%99%E6%9D%BF) 1467 | 1468 | [WPF 启动带参数](https://github.com/zLulus/My_Note/wiki/WPF-%E5%90%AF%E5%8A%A8%E5%B8%A6%E5%8F%82%E6%95%B0) 1469 | 1470 | #### 验证表单 1471 | [WPF 验证表单方法1](https://github.com/zLulus/My_Note/wiki/WPF-%E9%AA%8C%E8%AF%81%E8%A1%A8%E5%8D%95%E6%96%B9%E6%B3%951) 1472 | 1473 | [WPF 验证表单方法2](https://github.com/zLulus/My_Note/wiki/WPF-%E9%AA%8C%E8%AF%81%E8%A1%A8%E5%8D%95%E6%96%B9%E6%B3%952) 1474 | 1475 | [WPF 验证表单方法3(弹窗)](https://github.com/zLulus/My_Note/wiki/WPF-%E9%AA%8C%E8%AF%81%E8%A1%A8%E5%8D%95%E6%96%B9%E6%B3%953%EF%BC%88%E5%BC%B9%E7%AA%97%EF%BC%89) 1476 | 1477 | ## CefSharp 1478 | [CefSharp For WPF基本使用](https://github.com/zLulus/My_Note/wiki/CefSharp-For-WPF%E5%93%8D%E5%BA%94%E9%A1%B5%E9%9D%A2%E7%82%B9%E5%87%BB%E4%BA%8B%E4%BB%B6) 1479 | 1480 | [CefSharp For WPF隐藏滚动条](https://github.com/zLulus/My_Note/wiki/CefSharp-For-WPF%E9%9A%90%E8%97%8F%E6%BB%9A%E5%8A%A8%E6%9D%A1) 1481 | 1482 | [CefSharp For WPF自定义右键菜单栏](https://github.com/zLulus/My_Note/wiki/CefSharp-For-WPF%E8%87%AA%E5%AE%9A%E4%B9%89%E5%8F%B3%E9%94%AE%E8%8F%9C%E5%8D%95%E6%A0%8F) 1483 | 1484 | [CefSharp For WPF响应页面点击事件](https://github.com/zLulus/My_Note/wiki/CefSharp-For-WPF%E5%93%8D%E5%BA%94%E9%A1%B5%E9%9D%A2%E7%82%B9%E5%87%BB%E4%BA%8B%E4%BB%B6) 1485 | 1486 | ## Visifire 1487 | 1488 | [Visifire charts AxisLabels FontSize](https://github.com/zLulus/My_Note/wiki/Visifire-charts--AxisLabels--FontSize) 1489 | 1490 | [Visifire charts ToolBar](https://github.com/zLulus/My_Note/wiki/Visifire-charts-ToolBar) 1491 | 1492 | # MAUI 1493 | 1494 | [MAUI 简介](https://github.com/zLulus/My_Note/wiki/MAUI-%E7%AE%80%E4%BB%8B) 1495 | 1496 | [.NET MAUI Shell](https://github.com/zLulus/My_Note/wiki/.NET-MAUI-Shell) 1497 | 1498 | ## MAUI 布局 1499 | 1500 | [MAUI 布局Layout](https://github.com/zLulus/My_Note/wiki/MAUI-%E5%B8%83%E5%B1%80Layout) 1501 | 1502 | [StackLayout](https://github.com/zLulus/My_Note/wiki/MAUI-%E5%B8%83%E5%B1%80Layout-StackLayout) 1503 | 1504 | [Grid](https://github.com/zLulus/My_Note/wiki/MAUI-%E5%B8%83%E5%B1%80Layout-Grid) 1505 | 1506 | [AbsoluteLayout](https://github.com/zLulus/My_Note/wiki/MAUI-%E5%B8%83%E5%B1%80Layout-AbsoluteLayout) 1507 | 1508 | [FlexLayout](https://github.com/zLulus/My_Note/wiki/MAUI-%E5%B8%83%E5%B1%80Layout-FlexLayout) 1509 | 1510 | [BindableLayout](https://github.com/zLulus/My_Note/wiki/MAUI-%E5%B8%83%E5%B1%80Layout-BindableLayout) 1511 | 1512 | ## MAUI 数据绑定 1513 | 1514 | [MAUI 数据绑定简介](https://github.com/zLulus/My_Note/wiki/MAUI-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E7%AE%80%E4%BB%8B) 1515 | 1516 | [MAUI 数据绑定之属性绑定](https://github.com/zLulus/My_Note/wiki/MAUI-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E4%B9%8B%E5%B1%9E%E6%80%A7%E7%BB%91%E5%AE%9A) 1517 | 1518 | [MAUI 数据绑定之属性绑定与格式化](https://github.com/zLulus/My_Note/wiki/MAUI-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E4%B9%8B%E5%B1%9E%E6%80%A7%E7%BB%91%E5%AE%9A%E4%B8%8E%E6%A0%BC%E5%BC%8F%E5%8C%96) 1519 | 1520 | [MAUI 数据绑定之命令绑定](https://github.com/zLulus/My_Note/wiki/MAUI-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E4%B9%8B%E5%91%BD%E4%BB%A4%E7%BB%91%E5%AE%9A) 1521 | 1522 | [MAUI 数据绑定之MultiBinding](https://github.com/zLulus/My_Note/wiki/MAUI-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E4%B9%8BMultiBinding) 1523 | 1524 | [MAUI 数据绑定之数据转换](https://github.com/zLulus/My_Note/wiki/MAUI-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E4%B9%8B%E6%95%B0%E6%8D%AE%E8%BD%AC%E6%8D%A2) 1525 | 1526 | [MAUI 数据绑定之绑定模式](https://github.com/zLulus/My_Note/wiki/MAUI-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E4%B9%8B%E7%BB%91%E5%AE%9A%E6%A8%A1%E5%BC%8F) 1527 | 1528 | ## 字符串格式化 1529 | 1530 | [MAUI 字符串格式化](https://github.com/zLulus/My_Note/wiki/MAUI-%E5%AD%97%E7%AC%A6%E4%B8%B2%E6%A0%BC%E5%BC%8F%E5%8C%96) 1531 | 1532 | ## MAUI 触发器 1533 | 1534 | [MAUI 触发器简介](https://github.com/zLulus/My_Note/wiki/MAUI-%E8%A7%A6%E5%8F%91%E5%99%A8%E7%AE%80%E4%BB%8B) 1535 | 1536 | [MAUI 触发器之属性触发器](https://github.com/zLulus/My_Note/wiki/MAUI-%E8%A7%A6%E5%8F%91%E5%99%A8%E4%B9%8B%E5%B1%9E%E6%80%A7%E8%A7%A6%E5%8F%91%E5%99%A8) 1537 | 1538 | [MAUI 触发器之数据触发器](https://github.com/zLulus/My_Note/wiki/MAUI-%E8%A7%A6%E5%8F%91%E5%99%A8%E4%B9%8B%E6%95%B0%E6%8D%AE%E8%A7%A6%E5%8F%91%E5%99%A8) 1539 | 1540 | [MAUI 触发器之事件触发器](https://github.com/zLulus/My_Note/wiki/MAUI-%E8%A7%A6%E5%8F%91%E5%99%A8%E4%B9%8B%E4%BA%8B%E4%BB%B6%E8%A7%A6%E5%8F%91%E5%99%A8) 1541 | 1542 | [MAUI 触发器之多触发器](https://github.com/zLulus/My_Note/wiki/MAUI-%E8%A7%A6%E5%8F%91%E5%99%A8%E4%B9%8B%E5%A4%9A%E8%A7%A6%E5%8F%91%E5%99%A8) 1543 | 1544 | [MAUI 触发器之状态触发器和比较状态触发器](https://github.com/zLulus/My_Note/wiki/MAUI-%E8%A7%A6%E5%8F%91%E5%99%A8%E4%B9%8B%E7%8A%B6%E6%80%81%E8%A7%A6%E5%8F%91%E5%99%A8%E5%92%8C%E6%AF%94%E8%BE%83%E7%8A%B6%E6%80%81%E8%A7%A6%E5%8F%91%E5%99%A8) 1545 | 1546 | # Blazor 1547 | 1548 | [Blazor 简介](https://github.com/zLulus/My_Note/wiki/Blazor-%E7%AE%80%E4%BB%8B) 1549 | 1550 | [Blazor 依赖注入Dependency Injection](https://github.com/zLulus/My_Note/wiki/Blazor-%E4%BE%9D%E8%B5%96%E6%B3%A8%E5%85%A5Dependency-Injection) 1551 | 1552 | [Blazor 路由和导航](https://github.com/zLulus/My_Note/wiki/Blazor-%E8%B7%AF%E7%94%B1%E5%92%8C%E5%AF%BC%E8%88%AA) 1553 | 1554 | [Blazor 静态文件](https://github.com/zLulus/My_Note/wiki/Blazor-%E9%9D%99%E6%80%81%E6%96%87%E4%BB%B6) 1555 | 1556 | [Blazor JsRuntime](https://github.com/zLulus/My_Note/wiki/Blazor--JsRuntime) 1557 | 1558 | [Blazor 组件——表单](https://github.com/zLulus/My_Note/wiki/Blazor-%E7%BB%84%E4%BB%B6%E2%80%94%E2%80%94%E8%A1%A8%E5%8D%95) 1559 | 1560 | [Blazor 创建自定义 Blazor 组件](https://github.com/zLulus/My_Note/wiki/Blazor-%E5%88%9B%E5%BB%BA%E8%87%AA%E5%AE%9A%E4%B9%89-Blazor-%E7%BB%84%E4%BB%B6) 1561 | 1562 | [Blazor 数据绑定简介](https://github.com/zLulus/My_Note/wiki/Blazor-%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A%E7%AE%80%E4%BB%8B) 1563 | 1564 | [Blazor 属性数据绑定](https://github.com/zLulus/My_Note/wiki/Blazor-%E5%B1%9E%E6%80%A7%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A) 1565 | 1566 | [Blazor 事件绑定](https://github.com/zLulus/My_Note/wiki/Blazor-%E4%BA%8B%E4%BB%B6%E7%BB%91%E5%AE%9A) 1567 | 1568 | [Blazor 自定义弹窗](https://github.com/zLulus/My_Note/wiki/Blazor-%E8%87%AA%E5%AE%9A%E4%B9%89%E5%BC%B9%E7%AA%97) 1569 | 1570 | [Blazor 自定义弹窗2](https://github.com/zLulus/My_Note/wiki/Blazor-%E8%87%AA%E5%AE%9A%E4%B9%89%E5%BC%B9%E7%AA%972) 1571 | 1572 | [Blazor 手动实现双向绑定](https://github.com/zLulus/My_Note/wiki/Blazor-%E6%89%8B%E5%8A%A8%E5%AE%9E%E7%8E%B0%E5%8F%8C%E5%90%91%E7%BB%91%E5%AE%9A) 1573 | 1574 | [Blazor 使用oninput事件实现实时文本绑定](https://github.com/zLulus/My_Note/wiki/Blazor-%E4%BD%BF%E7%94%A8oninput%E4%BA%8B%E4%BB%B6%E5%AE%9E%E7%8E%B0%E5%AE%9E%E6%97%B6%E6%96%87%E6%9C%AC%E7%BB%91%E5%AE%9A) 1575 | 1576 | [Blazor 引入CSS](https://github.com/zLulus/My_Note/wiki/Blazor-%E5%BC%95%E5%85%A5CSS) 1577 | 1578 | [Blazor 表格](https://github.com/zLulus/My_Note/wiki/Blazor-%E8%A1%A8%E6%A0%BC) 1579 | 1580 | [Blazor 自定义组件 下拉框](https://github.com/zLulus/My_Note/wiki/Blazor-%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BB%84%E4%BB%B6-%E4%B8%8B%E6%8B%89%E6%A1%86) 1581 | 1582 | [Blazor 自定义组件 模态框](https://github.com/zLulus/My_Note/wiki/Blazor-%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BB%84%E4%BB%B6-%E6%A8%A1%E6%80%81%E6%A1%86) 1583 | 1584 | [Blazor 自定义组件 弹出框](https://github.com/zLulus/My_Note/wiki/Blazor-%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BB%84%E4%BB%B6-%E5%BC%B9%E5%87%BA%E6%A1%86) 1585 | 1586 | [Blazor 组件 导航条](https://github.com/zLulus/My_Note/wiki/Blazor--%E7%BB%84%E4%BB%B6-%E5%AF%BC%E8%88%AA%E6%9D%A1) 1587 | 1588 | [Blazor 组件的生命周期与状态管理](https://github.com/zLulus/My_Note/wiki/Blazor-%E7%BB%84%E4%BB%B6%E7%9A%84%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F%E4%B8%8E%E7%8A%B6%E6%80%81%E7%AE%A1%E7%90%86) 1589 | 1590 | [Blazor SetParametersAsync 和 OnParametersSet](https://github.com/zLulus/My_Note/wiki/Blazor-SetParametersAsync-%E5%92%8C-OnParametersSet) 1591 | 1592 | [Blazor 注册并使用HttpClient服务](https://github.com/zLulus/My_Note/wiki/Blazor-%E6%B3%A8%E5%86%8C%E5%B9%B6%E4%BD%BF%E7%94%A8HttpClient%E6%9C%8D%E5%8A%A1) 1593 | 1594 | # UWP 1595 | 1596 | [UWP应用手工安装](https://github.com/zLulus/My_Note/wiki/UWP%E5%BA%94%E7%94%A8%E6%89%8B%E5%B7%A5%E5%AE%89%E8%A3%85) 1597 | 1598 | [UWP 一些powershell命令](https://github.com/zLulus/My_Note/wiki/UWP-%E4%B8%80%E4%BA%9Bpowershell%E5%91%BD%E4%BB%A4) 1599 | 1600 | [UWP 手写板InkCanvas](https://github.com/zLulus/My_Note/wiki/UWP-%E6%89%8B%E5%86%99%E6%9D%BFInkCanvas) 1601 | 1602 | [UWP 确认是否有弹窗显示](https://github.com/zLulus/My_Note/wiki/UWP-%E7%A1%AE%E8%AE%A4%E6%98%AF%E5%90%A6%E6%9C%89%E5%BC%B9%E7%AA%97%E6%98%BE%E7%A4%BA) 1603 | 1604 | [UWP Dispatcher用法](https://github.com/zLulus/My_Note/wiki/UWP-Dispatcher%E7%94%A8%E6%B3%95) 1605 | 1606 | [UWP 阴影效果](https://github.com/zLulus/My_Note/wiki/UWP-%E9%98%B4%E5%BD%B1%E6%95%88%E6%9E%9C) 1607 | 1608 | [UIElement.Clip](https://github.com/zLulus/My_Note/wiki/UIElement.Clip) 1609 | 1610 | [UWP 指定应用主题RequestedTheme](https://github.com/zLulus/My_Note/wiki/UWP-%E6%8C%87%E5%AE%9A%E5%BA%94%E7%94%A8%E4%B8%BB%E9%A2%98RequestedTheme) 1611 | 1612 | # Windows Service 1613 | 1614 | [创建Windows Service](https://github.com/zLulus/My_Note/wiki/%E5%88%9B%E5%BB%BAWindows-Service) 1615 | 1616 | # 设计模式 1617 | 1618 | [单例模式](https://github.com/zLulus/My_Note/wiki/%E5%8D%95%E4%BE%8B%E6%A8%A1%E5%BC%8F) 1619 | 1620 | [工厂模式](https://github.com/zLulus/My_Note/wiki/%E5%B7%A5%E5%8E%82%E6%A8%A1%E5%BC%8F) 1621 | 1622 | [仓储模式(Repository)](https://github.com/zLulus/My_Note/wiki/%E4%BB%93%E5%82%A8%E6%A8%A1%E5%BC%8F%EF%BC%88Repository%EF%BC%89) 1623 | 1624 | [MVC(Model View Controller)](https://github.com/zLulus/My_Note/wiki/MVC%EF%BC%88Model-View-Controller%EF%BC%89) 1625 | 1626 | [MVVM(Model-View-ViewModel)](https://github.com/zLulus/My_Note/wiki/MVVM(Model-View-ViewModel)) 1627 | 1628 | [MVC,MVP 和 MVVM](https://github.com/zLulus/My_Note/wiki/MVC%EF%BC%8CMVP-%E5%92%8C-MVVM) 1629 | 1630 | [三层架构](https://github.com/zLulus/My_Note/wiki/%E4%B8%89%E5%B1%82%E6%9E%B6%E6%9E%84) 1631 | 1632 | # 网络 1633 | 1634 | [OSI与TCP/IP协议分层](https://github.com/zLulus/My_Note/wiki/OSI%E4%B8%8ETCP-IP%E5%8D%8F%E8%AE%AE%E5%88%86%E5%B1%82) 1635 | 1636 | [通讯协议](https://github.com/zLulus/My_Note/wiki/%E9%80%9A%E8%AE%AF%E5%8D%8F%E8%AE%AE) 1637 | 1638 | [MAC地址 && IP地址 && 域名](https://github.com/zLulus/My_Note/wiki/MAC%E5%9C%B0%E5%9D%80-&&-IP%E5%9C%B0%E5%9D%80-&&-%E5%9F%9F%E5%90%8D) 1639 | 1640 | [TCP/IP 通讯协议](https://github.com/zLulus/My_Note/wiki/TCP-IP-%E9%80%9A%E8%AE%AF%E5%8D%8F%E8%AE%AE) 1641 | 1642 | [IPv6](https://github.com/zLulus/My_Note/wiki/IPv6) 1643 | 1644 | [搜索引擎优化(SEO)](https://github.com/zLulus/My_Note/wiki/%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E%E4%BC%98%E5%8C%96) 1645 | 1646 | [文件传输协议(FTP)](https://github.com/zLulus/My_Note/wiki/%E6%96%87%E4%BB%B6%E4%BC%A0%E8%BE%93%E5%8D%8F%E8%AE%AE) 1647 | 1648 | [简单邮件传输协议(SMTP)](https://github.com/zLulus/My_Note/wiki/%E7%AE%80%E5%8D%95%E9%82%AE%E4%BB%B6%E4%BC%A0%E8%BE%93%E5%8D%8F%E8%AE%AE) 1649 | 1650 | [超文本传输协议(HTTP)](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E6%96%87%E6%9C%AC%E4%BC%A0%E8%BE%93%E5%8D%8F%E8%AE%AE) 1651 | 1652 | [安全超文本传输协议(HTTPS)](https://github.com/zLulus/My_Note/wiki/%E5%AE%89%E5%85%A8%E8%B6%85%E6%96%87%E6%9C%AC%E4%BC%A0%E8%BE%93%E5%8D%8F%E8%AE%AE) 1653 | 1654 | [安全套接层(SSL) && 继任者传输层安全(TLS)](https://github.com/zLulus/My_Note/wiki/%E5%AE%89%E5%85%A8%E5%A5%97%E6%8E%A5%E5%B1%82-&&-%E7%BB%A7%E4%BB%BB%E8%80%85%E4%BC%A0%E8%BE%93%E5%B1%82%E5%AE%89%E5%85%A8) 1655 | 1656 | [Web安全](https://github.com/zLulus/My_Note/wiki/Web%E5%AE%89%E5%85%A8) 1657 | 1658 | ## 内网IP-外网IP-域名流程 1659 | [端口映射与主机映射](https://github.com/zLulus/My_Note/wiki/%E7%AB%AF%E5%8F%A3%E6%98%A0%E5%B0%84%E4%B8%8E%E4%B8%BB%E6%9C%BA%E6%98%A0%E5%B0%84) 1660 | 1661 | [域名解析](https://github.com/zLulus/My_Note/wiki/%E5%9F%9F%E5%90%8D%E8%A7%A3%E6%9E%90) 1662 | 1663 | [内网IP-外网IP-域名流程解析](https://github.com/zLulus/My_Note/wiki/%E5%86%85%E7%BD%91IP-%E5%A4%96%E7%BD%91IP-%E5%9F%9F%E5%90%8D%E6%B5%81%E7%A8%8B%E8%A7%A3%E6%9E%90) 1664 | 1665 | # Docker 1666 | 1667 | [Docker](https://github.com/zLulus/My_Note/wiki/Docker) 1668 | 1669 | [Docker学习脑图](https://github.com/zLulus/My_Note/wiki/Docker%E5%AD%A6%E4%B9%A0%E8%84%91%E5%9B%BE) 1670 | 1671 | [Docker 常用命令](https://github.com/zLulus/My_Note/wiki/Docker-%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4) 1672 | 1673 | [在Docker中创建Mongo容器的后续设置](https://github.com/zLulus/My_Note/wiki/%E5%9C%A8Docker%E4%B8%AD%E5%88%9B%E5%BB%BAMongo%E5%AE%B9%E5%99%A8%E7%9A%84%E5%90%8E%E7%BB%AD%E8%AE%BE%E7%BD%AE) 1674 | 1675 | [Docker SqlServer](https://github.com/zLulus/My_Note/wiki/Docker-SqlServer) 1676 | 1677 | # IDE 1678 | 1679 | [Visual Studio 常用快捷键](https://github.com/zLulus/My_Note/wiki/Visual-Studio-%E5%B8%B8%E7%94%A8%E5%BF%AB%E6%8D%B7%E9%94%AE) 1680 | 1681 | [Visual Studio Code 常用快捷键](https://github.com/zLulus/My_Note/wiki/Visual-Studio--Code-%E5%B8%B8%E7%94%A8%E5%BF%AB%E6%8D%B7%E9%94%AE) 1682 | 1683 | [Visual Studio 插件](https://github.com/zLulus/My_Note/wiki/Visual-Studio-%E6%8F%92%E4%BB%B6) 1684 | 1685 | # GIS 1686 | ## 基础知识 1687 | [空间参考标识符 (SRID)](https://github.com/zLulus/My_Note/wiki/%E7%A9%BA%E9%97%B4%E5%8F%82%E8%80%83%E6%A0%87%E8%AF%86%E7%AC%A6-(SRID)) 1688 | 1689 | [二维与三维](https://github.com/zLulus/My_Note/wiki/%E4%BA%8C%E7%BB%B4%E4%B8%8E%E4%B8%89%E7%BB%B4) 1690 | 1691 | [地图数据](https://github.com/zLulus/My_Note/wiki/%E5%9C%B0%E5%9B%BE%E6%95%B0%E6%8D%AE) 1692 | 1693 | [三维绘制自由线](https://github.com/zLulus/My_Note/wiki/%E4%B8%89%E7%BB%B4%E7%BB%98%E5%88%B6%E8%87%AA%E7%94%B1%E7%BA%BF) 1694 | 1695 | [坐标转换](https://github.com/zLulus/My_Note/wiki/%E5%9D%90%E6%A0%87%E8%BD%AC%E6%8D%A2) 1696 | 1697 | [uDig](https://github.com/zLulus/My_Note/wiki/uDig) 1698 | 1699 | [开放地理空间信息联盟(OGC)](https://github.com/zLulus/My_Note/wiki/%E5%BC%80%E6%94%BE%E5%9C%B0%E7%90%86%E7%A9%BA%E9%97%B4%E4%BF%A1%E6%81%AF%E8%81%94%E7%9B%9F) 1700 | 1701 | [地理坐标系统和投影坐标系统](https://github.com/zLulus/My_Note/wiki/%E5%9C%B0%E7%90%86%E5%9D%90%E6%A0%87%E7%B3%BB%E7%BB%9F%E5%92%8C%E6%8A%95%E5%BD%B1%E5%9D%90%E6%A0%87%E7%B3%BB%E7%BB%9F) 1702 | 1703 | [经纬度 度分秒](https://github.com/zLulus/My_Note/wiki/%E7%BB%8F%E7%BA%AC%E5%BA%A6-%E5%BA%A6%E5%88%86%E7%A7%92) 1704 | 1705 | [比例尺](https://github.com/zLulus/My_Note/wiki/%E6%AF%94%E4%BE%8B%E5%B0%BA) 1706 | 1707 | [专题图](https://github.com/zLulus/My_Note/wiki/%E4%B8%93%E9%A2%98%E5%9B%BE) 1708 | 1709 | [拓扑](https://github.com/zLulus/My_Note/wiki/%E6%8B%93%E6%89%91) 1710 | 1711 | [凸包](https://github.com/zLulus/My_Note/wiki/%E5%87%B8%E5%8C%85) 1712 | 1713 | [缓冲区(分析)](https://github.com/zLulus/My_Note/wiki/%E7%BC%93%E5%86%B2%E5%8C%BA(%E5%88%86%E6%9E%90)) 1714 | 1715 | ### 数据格式 1716 | [GIS 数据源 & 数据格式](https://github.com/zLulus/My_Note/wiki/GIS-%E6%95%B0%E6%8D%AE%E6%BA%90-&-%E6%95%B0%E6%8D%AE%E6%A0%BC%E5%BC%8F) 1717 | 1718 | [wms/wfs/wcs](https://github.com/zLulus/My_Note/wiki/wms-wfs-wcs) 1719 | 1720 | [矢量数据](https://github.com/zLulus/My_Note/wiki/%E7%9F%A2%E9%87%8F%E6%95%B0%E6%8D%AE) 1721 | 1722 | [栅格数据](https://github.com/zLulus/My_Note/wiki/%E6%A0%85%E6%A0%BC%E6%95%B0%E6%8D%AE) 1723 | 1724 | [GIS 金字塔结构](https://github.com/zLulus/My_Note/wiki/GIS-%E9%87%91%E5%AD%97%E5%A1%94%E7%BB%93%E6%9E%84) 1725 | 1726 | [NetTopologySuite Geometry&WKT&WKB&GeoJSON互转](https://github.com/zLulus/My_Note/wiki/NetTopologySuite-Geometry&WKT&WKB&GeoJSON%E4%BA%92%E8%BD%AC) 1727 | 1728 | ### 切片/瓦片技术 1729 | [地图瓦片技术](https://github.com/zLulus/My_Note/wiki/%E5%9C%B0%E5%9B%BE%E7%93%A6%E7%89%87%E6%8A%80%E6%9C%AF) 1730 | 1731 | [切片地图数据格式](https://github.com/zLulus/My_Note/wiki/%E5%88%87%E7%89%87%E5%9C%B0%E5%9B%BE%E6%95%B0%E6%8D%AE%E6%A0%BC%E5%BC%8F) 1732 | 1733 | ## WebGIS 1734 | 1735 | [空间数据库引擎技术(SDE)](https://github.com/zLulus/My_Note/wiki/%E7%A9%BA%E9%97%B4%E6%95%B0%E6%8D%AE%E5%BA%93%E5%BC%95%E6%93%8E%E6%8A%80%E6%9C%AF) 1736 | 1737 | [数据源的同时访问与操作](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E6%BA%90%E7%9A%84%E5%90%8C%E6%97%B6%E8%AE%BF%E9%97%AE%E4%B8%8E%E6%93%8D%E4%BD%9C) 1738 | 1739 | [各大地图提供商及其API](https://github.com/zLulus/My_Note/wiki/%E5%90%84%E5%A4%A7%E5%9C%B0%E5%9B%BE%E6%8F%90%E4%BE%9B%E5%95%86%E5%8F%8A%E5%85%B6API) 1740 | 1741 | [WMTS技术](https://github.com/zLulus/My_Note/wiki/WMTS%E6%8A%80%E6%9C%AF) 1742 | 1743 | [GeoServer](https://github.com/zLulus/My_Note/wiki/GeoServer) 1744 | 1745 | ## ArcGIS Runtime SDK 1746 | 1747 | [ArcGIS 环境安装 & 学习资料](https://github.com/zLulus/My_Note/wiki/ArcGIS-%E7%8E%AF%E5%A2%83%E5%AE%89%E8%A3%85-&-%E5%AD%A6%E4%B9%A0%E8%B5%84%E6%96%99) 1748 | 1749 | [ArcGIS Runtime SDK 相关资料](https://github.com/zLulus/My_Note/wiki/ArcGIS-Runtime-SDK-%E7%9B%B8%E5%85%B3%E8%B5%84%E6%96%99) 1750 | 1751 | [ArcGIS 创建空间数据库&表](https://github.com/zLulus/My_Note/wiki/ArcGIS-%E5%88%9B%E5%BB%BA%E7%A9%BA%E9%97%B4%E6%95%B0%E6%8D%AE%E5%BA%93&%E8%A1%A8) 1752 | 1753 | [ArcGIS Runtime SDK for WPF 初始化](https://github.com/zLulus/My_Note/wiki/ArcGIS-Runtime-SDK-for-WPF-%E5%88%9D%E5%A7%8B%E5%8C%96) 1754 | 1755 | [请使用 MakeValid 将该实例转换为有效实例](https://github.com/zLulus/My_Note/wiki/%E8%AF%B7%E4%BD%BF%E7%94%A8-MakeValid-%E5%B0%86%E8%AF%A5%E5%AE%9E%E4%BE%8B%E8%BD%AC%E6%8D%A2%E4%B8%BA%E6%9C%89%E6%95%88%E5%AE%9E%E4%BE%8B) 1756 | 1757 | [基于ArcGIS开发动态视域效果](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E4%BA%8EArcGIS%E5%BC%80%E5%8F%91%E5%8A%A8%E6%80%81%E8%A7%86%E5%9F%9F%E6%95%88%E6%9E%9C) 1758 | 1759 | [基于ArcGIS开发3D立方体空间关系判断](https://github.com/zLulus/My_Note/wiki/%E5%9F%BA%E4%BA%8EArcGIS%E5%BC%80%E5%8F%913D%E7%AB%8B%E6%96%B9%E4%BD%93%E7%A9%BA%E9%97%B4%E5%85%B3%E7%B3%BB%E5%88%A4%E6%96%AD) 1760 | 1761 | ## CityEngine 1762 | 1763 | [CityEngine流程](https://github.com/zLulus/My_Note/wiki/CityEngine%E6%B5%81%E7%A8%8B) 1764 | 1765 | ## ArcGIS Server 1766 | 1767 | [ArcGIS Server的管理](https://github.com/zLulus/My_Note/wiki/ArcGIS-Server%E7%9A%84%E7%AE%A1%E7%90%86) 1768 | 1769 | [利用ArcMap发布、访问ArcGIS Server服务](https://github.com/zLulus/My_Note/wiki/%E5%88%A9%E7%94%A8ArcMap%E5%8F%91%E5%B8%83%E3%80%81%E8%AE%BF%E9%97%AEArcGIS-Server%E6%9C%8D%E5%8A%A1) 1770 | 1771 | ## ArcMap 1772 | 1773 | [设置ArcGIS Runtime](https://github.com/zLulus/My_Note/wiki/%E8%AE%BE%E7%BD%AEArcGIS-Runtime) 1774 | 1775 | [打包离线地图包](https://github.com/zLulus/My_Note/wiki/%E6%89%93%E5%8C%85%E7%A6%BB%E7%BA%BF%E5%9C%B0%E5%9B%BE%E5%8C%85) 1776 | 1777 | ## QGIS 1778 | 1779 | [QGIS](https://github.com/zLulus/My_Note/wiki/QGIS) 1780 | 1781 | ## SuperMap 1782 | [超图资料下载与环境安装](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BE%E8%B5%84%E6%96%99%E4%B8%8B%E8%BD%BD%E4%B8%8E%E7%8E%AF%E5%A2%83%E5%AE%89%E8%A3%85) 1783 | 1784 | [超图产品系列](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BE%E4%BA%A7%E5%93%81%E7%B3%BB%E5%88%97) 1785 | 1786 | [超图SampleCode运行须知](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BESampleCode%E8%BF%90%E8%A1%8C%E9%A1%BB%E7%9F%A5) 1787 | 1788 | ### SuperMap iObjects .NET 1789 | [SuperMap iObjects .NET 名词与数据结构](https://github.com/zLulus/My_Note/wiki/SuperMap-iObjects-.NET-%E5%90%8D%E8%AF%8D%E4%B8%8E%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84) 1790 | 1791 | [超图系统表](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BE%E7%B3%BB%E7%BB%9F%E8%A1%A8) 1792 | 1793 | [超图自定义数据集名称](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BE%E8%87%AA%E5%AE%9A%E4%B9%89%E6%95%B0%E6%8D%AE%E9%9B%86%E5%90%8D%E7%A7%B0) 1794 | 1795 | [超图 wpf地图控件加载地图](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BE-wpf%E5%9C%B0%E5%9B%BE%E6%8E%A7%E4%BB%B6%E5%8A%A0%E8%BD%BD%E5%9C%B0%E5%9B%BE) 1796 | 1797 | [Failed Exec strSQL : call GetSequenceNextID('SmDatasetID', @a); PROCEDURE GetSequenceNextID does not exist](https://github.com/zLulus/My_Note/wiki/Failed-Exec-strSQL-:-call-GetSequenceNextID('SmDatasetID',-@a);-PROCEDURE-GetSequenceNextID-does-not-exist) 1798 | 1799 | [超图 Datasource](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BESuperMap-iObjects-.NET-Datasource) 1800 | 1801 | [文件数据导入数据库思路](https://github.com/zLulus/My_Note/wiki/%E6%96%87%E4%BB%B6%E6%95%B0%E6%8D%AE%E5%AF%BC%E5%85%A5%E6%95%B0%E6%8D%AE%E5%BA%93%E6%80%9D%E8%B7%AF) 1802 | 1803 | [超图SuperMap iObjects .NET Datasource](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BESuperMap-iObjects-.NET-Datasource) 1804 | 1805 | [超图SuperMap iObjects .NET Geometry转geoJSON&WKT&WKB](https://github.com/zLulus/My_Note/wiki/%E8%B6%85%E5%9B%BESuperMap-iObjects-.NET-Geometry%E8%BD%ACgeoJSON&WKT&WKB) 1806 | 1807 | # Xamarin 1808 | ## 移动端基本知识 1809 | 1810 | [掌上开发的局限性](https://github.com/zLulus/My_Note/wiki/%E6%8E%8C%E4%B8%8A%E5%BC%80%E5%8F%91%E7%9A%84%E5%B1%80%E9%99%90%E6%80%A7) 1811 | 1812 | [国际移动用户识别码(IMSI)](https://github.com/zLulus/My_Note/wiki/%E5%9B%BD%E9%99%85%E7%A7%BB%E5%8A%A8%E7%94%A8%E6%88%B7%E8%AF%86%E5%88%AB%E7%A0%81) 1813 | 1814 | [真机调试](https://github.com/zLulus/My_Note/wiki/%E7%9C%9F%E6%9C%BA%E8%B0%83%E8%AF%95) 1815 | 1816 | ### Android基本知识 1817 | [Android开发四大件](https://github.com/zLulus/My_Note/wiki/Android%E5%BC%80%E5%8F%91%E5%9B%9B%E5%A4%A7%E4%BB%B6) 1818 | 1819 | [NinePatch](https://github.com/zLulus/My_Note/wiki/NinePatch) 1820 | 1821 | [android应用发布](https://github.com/zLulus/My_Note/wiki/android%E5%BA%94%E7%94%A8%E5%8F%91%E5%B8%83) 1822 | 1823 | [app部署与发布](https://github.com/zLulus/My_Note/wiki/app%E9%83%A8%E7%BD%B2%E4%B8%8E%E5%8F%91%E5%B8%83) 1824 | 1825 | [适配不同的语言——区域修饰词](https://github.com/zLulus/My_Note/wiki/%E9%80%82%E9%85%8D%E4%B8%8D%E5%90%8C%E7%9A%84%E8%AF%AD%E8%A8%80%E2%80%94%E2%80%94%E5%8C%BA%E5%9F%9F%E4%BF%AE%E9%A5%B0%E8%AF%8D) 1826 | 1827 | [适配不同的屏幕](https://github.com/zLulus/My_Note/wiki/%E9%80%82%E9%85%8D%E4%B8%8D%E5%90%8C%E7%9A%84%E5%B1%8F%E5%B9%95) 1828 | 1829 | [适配不同的系统版本](https://github.com/zLulus/My_Note/wiki/%E9%80%82%E9%85%8D%E4%B8%8D%E5%90%8C%E7%9A%84%E7%B3%BB%E7%BB%9F%E7%89%88%E6%9C%AC) 1830 | 1831 | [Android数据存储的四种方式](https://github.com/zLulus/My_Note/wiki/Android%E6%95%B0%E6%8D%AE%E5%AD%98%E5%82%A8%E7%9A%84%E5%9B%9B%E7%A7%8D%E6%96%B9%E5%BC%8F) 1832 | 1833 | [手机开启开发者模式](https://github.com/zLulus/My_Note/wiki/%E6%89%8B%E6%9C%BA%E5%BC%80%E5%90%AF%E5%BC%80%E5%8F%91%E8%80%85%E6%A8%A1%E5%BC%8F) 1834 | 1835 | ## Xamarin相关知识 1836 | 1837 | [Xamarin简介](https://github.com/zLulus/My_Note/wiki/Xamarin%E7%AE%80%E4%BB%8B) 1838 | 1839 | [设置可接受的版本](https://github.com/zLulus/My_Note/wiki/%E8%AE%BE%E7%BD%AE%E5%8F%AF%E6%8E%A5%E5%8F%97%E7%9A%84%E7%89%88%E6%9C%AC) 1840 | 1841 | #### Xamarin.Forms 1842 | 1843 | [视图和布局](https://github.com/zLulus/My_Note/wiki/%E8%A7%86%E5%9B%BE%E5%92%8C%E5%B8%83%E5%B1%80) 1844 | 1845 | [App.xaml介绍](https://github.com/zLulus/My_Note/wiki/App.xaml%E4%BB%8B%E7%BB%8D) 1846 | 1847 | [StackLayout](https://github.com/zLulus/My_Note/wiki/StackLayout) 1848 | 1849 | [数据绑定](https://github.com/zLulus/My_Note/wiki/%E6%95%B0%E6%8D%AE%E7%BB%91%E5%AE%9A) 1850 | 1851 | [自定义单元格](https://github.com/zLulus/My_Note/wiki/%E8%87%AA%E5%AE%9A%E4%B9%89%E5%8D%95%E5%85%83%E6%A0%BC) 1852 | 1853 | [页面跳转](https://github.com/zLulus/My_Note/wiki/%E9%A1%B5%E9%9D%A2%E8%B7%B3%E8%BD%AC) 1854 | 1855 | [InitializeComponent无法识别的问题](https://github.com/zLulus/My_Note/wiki/InitializeComponent%E6%97%A0%E6%B3%95%E8%AF%86%E5%88%AB%E7%9A%84%E9%97%AE%E9%A2%98) 1856 | 1857 | #### Xamarin.Android 1858 | 1859 | [将应用改为系统应用](https://github.com/zLulus/My_Note/wiki/%E5%B0%86%E5%BA%94%E7%94%A8%E6%94%B9%E4%B8%BA%E7%B3%BB%E7%BB%9F%E5%BA%94%E7%94%A8) 1860 | 1861 | [Adapter的泛型](https://github.com/zLulus/My_Note/wiki/Adapter%E7%9A%84%E6%B3%9B%E5%9E%8B) 1862 | 1863 | [布局](https://github.com/zLulus/My_Note/wiki/%E5%B8%83%E5%B1%80) 1864 | 1865 | [ViewTree](https://github.com/zLulus/My_Note/wiki/ViewTree) 1866 | 1867 | [Button与ToggleButton](https://github.com/zLulus/My_Note/wiki/Button%E4%B8%8EToggleButton) 1868 | 1869 | [UnauthorizedAccessException: Access to the path is denied](https://github.com/zLulus/My_Note/wiki/UnauthorizedAccessException:-Access-to-the-path-is-denied) 1870 | 1871 | [Xamarin Assets文件读取](https://github.com/zLulus/My_Note/wiki/Xamarin-Assets%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96) 1872 | 1873 | [Xamarin.Amndroid 全局截图](https://github.com/zLulus/My_Note/wiki/Xamarin.Amndroid-%E5%85%A8%E5%B1%80%E6%88%AA%E5%9B%BE) 1874 | 1875 | [Xamarin Android Activity全屏](https://github.com/zLulus/My_Note/wiki/Xamarin-Android-Activity%E5%85%A8%E5%B1%8F) 1876 | 1877 | [Xamarin Android 新建Activity](https://github.com/zLulus/My_Note/wiki/Xamarin-Android-%E6%96%B0%E5%BB%BAActivity) 1878 | 1879 | [Xamarin Android 跳转页面并传值](https://github.com/zLulus/My_Note/wiki/Xamarin-Android-%E8%B7%B3%E8%BD%AC%E9%A1%B5%E9%9D%A2%E5%B9%B6%E4%BC%A0%E5%80%BC) 1880 | 1881 | [获得屏幕坐标](https://github.com/zLulus/My_Note/wiki/%E8%8E%B7%E5%BE%97%E5%B1%8F%E5%B9%95%E5%9D%90%E6%A0%87) 1882 | 1883 | [Xamarin Android 使用其他语言的类库](https://github.com/zLulus/My_Note/wiki/Xamarin-Android-%E4%BD%BF%E7%94%A8%E5%85%B6%E4%BB%96%E8%AF%AD%E8%A8%80%E7%9A%84%E7%B1%BB%E5%BA%93) 1884 | 1885 | ## 虚拟机 1886 | 1887 | [Genymotion使用注意](https://github.com/zLulus/My_Note/wiki/Genymotion%E4%BD%BF%E7%94%A8%E6%B3%A8%E6%84%8F) 1888 | 1889 | # Unity 1890 | 1891 | [游戏基础](https://github.com/zLulus/My_Note/wiki/%E6%B8%B8%E6%88%8F%E5%9F%BA%E7%A1%80) 1892 | 1893 | [Unity相关资源](https://github.com/zLulus/My_Note/wiki/Unity%E7%9B%B8%E5%85%B3%E8%B5%84%E6%BA%90) 1894 | 1895 | [Unity IDE介绍](https://github.com/zLulus/My_Note/wiki/Unity-IDE%E4%BB%8B%E7%BB%8D) 1896 | 1897 | [Unity基础概念](https://github.com/zLulus/My_Note/wiki/Unity%E5%9F%BA%E7%A1%80%E6%A6%82%E5%BF%B5) 1898 | 1899 | [Unity脚本](https://github.com/zLulus/My_Note/wiki/Unity%E8%84%9A%E6%9C%AC) 1900 | 1901 | [Unity常用API](https://github.com/zLulus/My_Note/wiki/Unity%E5%B8%B8%E7%94%A8API) 1902 | 1903 | [Update()定时执行某方法](https://github.com/zLulus/My_Note/wiki/Update()%E5%AE%9A%E6%97%B6%E6%89%A7%E8%A1%8C%E6%9F%90%E6%96%B9%E6%B3%95) 1904 | 1905 | [UGUI](https://github.com/zLulus/My_Note/wiki/UGUI) 1906 | 1907 | [动画](https://github.com/zLulus/My_Note/wiki/%E5%8A%A8%E7%94%BB) 1908 | 1909 | [Unity 2D入门](https://github.com/zLulus/My_Note/wiki/Unity-2D%E5%85%A5%E9%97%A8) 1910 | 1911 | [Unity 3D入门](https://github.com/zLulus/My_Note/wiki/Unity-3D%E5%85%A5%E9%97%A8) 1912 | 1913 | [unity mod制作](https://github.com/zLulus/My_Note/wiki/unity-mod%E5%88%B6%E4%BD%9C) 1914 | 1915 | [Unity 使用Sqlite](https://github.com/zLulus/My_Note/wiki/Unity-%E4%BD%BF%E7%94%A8Sqlite)([English Version](https://github.com/zLulus/My_Note/wiki/Unity-using-Sqlite)) 1916 | 1917 | # 微信 1918 | 1919 | [微信开发相关资料](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E5%BC%80%E5%8F%91%E7%9B%B8%E5%85%B3%E8%B5%84%E6%96%99) 1920 | 1921 | [微信用户授权登录](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E7%94%A8%E6%88%B7%E6%8E%88%E6%9D%83%E7%99%BB%E5%BD%95) 1922 | 1923 | [微信白名单配置与检验](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E7%99%BD%E5%90%8D%E5%8D%95%E9%85%8D%E7%BD%AE%E4%B8%8E%E6%A3%80%E9%AA%8C) 1924 | 1925 | [微信获得用户信息](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E8%8E%B7%E5%BE%97%E7%94%A8%E6%88%B7%E4%BF%A1%E6%81%AF) 1926 | 1927 | [微信网页跳转一直弹提示的问题](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E7%BD%91%E9%A1%B5%E8%B7%B3%E8%BD%AC%E4%B8%80%E7%9B%B4%E5%BC%B9%E6%8F%90%E7%A4%BA%E7%9A%84%E9%97%AE%E9%A2%98) 1928 | 1929 | [微信超时补发的处理思路](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E8%B6%85%E6%97%B6%E8%A1%A5%E5%8F%91%E7%9A%84%E5%A4%84%E7%90%86%E6%80%9D%E8%B7%AF) 1930 | 1931 | [微信红包功能](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E7%BA%A2%E5%8C%85%E5%8A%9F%E8%83%BD) 1932 | 1933 | [微信报错10003](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E6%8A%A5%E9%94%9910003) 1934 | 1935 | [暴露接口授权的问题](https://github.com/zLulus/My_Note/wiki/%E6%9A%B4%E9%9C%B2%E6%8E%A5%E5%8F%A3%E6%8E%88%E6%9D%83%E7%9A%84%E9%97%AE%E9%A2%98) 1936 | 1937 | [微信查询所有关注该公众号的用户](https://github.com/zLulus/My_Note/wiki/%E5%BE%AE%E4%BF%A1%E6%9F%A5%E8%AF%A2%E6%89%80%E6%9C%89%E5%85%B3%E6%B3%A8%E8%AF%A5%E5%85%AC%E4%BC%97%E5%8F%B7%E7%9A%84%E7%94%A8%E6%88%B7) 1938 | 1939 | ## 小程序 1940 | 1941 | [小程序开发资料](https://github.com/zLulus/My_Note/wiki/%E5%B0%8F%E7%A8%8B%E5%BA%8F%E5%BC%80%E5%8F%91%E8%B5%84%E6%96%99) 1942 | 1943 | [小程序开发——统一请求方法](https://github.com/zLulus/My_Note/wiki/%E5%B0%8F%E7%A8%8B%E5%BA%8F%E5%BC%80%E5%8F%91%E2%80%94%E2%80%94%E7%BB%9F%E4%B8%80%E8%AF%B7%E6%B1%82%E6%96%B9%E6%B3%95) 1944 | 1945 | [作用域浅析](https://github.com/zLulus/My_Note/wiki/%E4%BD%9C%E7%94%A8%E5%9F%9F%E6%B5%85%E6%9E%90) 1946 | 1947 | [小程序——获得用户敏感信息](https://github.com/zLulus/My_Note/wiki/%E5%B0%8F%E7%A8%8B%E5%BA%8F%E2%80%94%E2%80%94%E8%8E%B7%E5%BE%97%E7%94%A8%E6%88%B7%E6%95%8F%E6%84%9F%E4%BF%A1%E6%81%AF) 1948 | 1949 | # 计算机基本知识 1950 | 1951 | [字符集编码和排列规则](https://github.com/zLulus/My_Note/wiki/%E5%AD%97%E7%AC%A6%E9%9B%86%E7%BC%96%E7%A0%81%E5%92%8C%E6%8E%92%E5%88%97%E8%A7%84%E5%88%99) 1952 | 1953 | [内存泄漏](https://github.com/zLulus/My_Note/wiki/%E5%86%85%E5%AD%98%E6%B3%84%E6%BC%8F) 1954 | 1955 | [Wireshark抓包](https://github.com/zLulus/My_Note/wiki/Wireshark%E6%8A%93%E5%8C%85) 1956 | 1957 | [正则表达式](https://github.com/zLulus/My_Note/wiki/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F) 1958 | 1959 | [OpenSSL](https://github.com/zLulus/My_Note/wiki/OpenSSL) 1960 | 1961 | [内网穿透的几种姿势](https://github.com/zLulus/My_Note/wiki/%E5%86%85%E7%BD%91%E7%A9%BF%E9%80%8F%E7%9A%84%E5%87%A0%E7%A7%8D%E5%A7%BF%E5%8A%BF) 1962 | 1963 | [反编译apk包](https://github.com/zLulus/My_Note/wiki/%E5%8F%8D%E7%BC%96%E8%AF%91apk%E5%8C%85) 1964 | 1965 | [前端代码分析方法](https://github.com/zLulus/My_Note/wiki/%E5%89%8D%E7%AB%AF%E4%BB%A3%E7%A0%81%E5%88%86%E6%9E%90%E6%96%B9%E6%B3%95) 1966 | 1967 | [url里面的数据解码](https://github.com/zLulus/My_Note/wiki/url%E9%87%8C%E9%9D%A2%E7%9A%84%E6%95%B0%E6%8D%AE%E8%A7%A3%E7%A0%81) 1968 | 1969 | [代码管理](https://github.com/zLulus/My_Note/wiki/%E4%BB%A3%E7%A0%81%E7%AE%A1%E7%90%86) 1970 | 1971 | [OAuth 2.0](https://github.com/zLulus/My_Note/wiki/OAuth-2.0) 1972 | 1973 | [本机多域名配置](https://github.com/zLulus/My_Note/wiki/%E6%9C%AC%E6%9C%BA%E5%A4%9A%E5%9F%9F%E5%90%8D%E9%85%8D%E7%BD%AE) 1974 | 1975 | [灰度发布](https://github.com/zLulus/My_Note/wiki/%E7%81%B0%E5%BA%A6%E5%8F%91%E5%B8%83) 1976 | 1977 | [性能优化](https://github.com/zLulus/My_Note/wiki/%E6%80%A7%E8%83%BD%E4%BC%98%E5%8C%96) 1978 | 1979 | [Ajax](https://github.com/zLulus/My_Note/wiki/Ajax) 1980 | 1981 | [丰富互联网程序(RIA)](https://github.com/zLulus/My_Note/wiki/%E4%B8%B0%E5%AF%8C%E4%BA%92%E8%81%94%E7%BD%91%E7%A8%8B%E5%BA%8F) 1982 | 1983 | [windows常用cmd指令](https://github.com/zLulus/My_Note/wiki/windows%E5%B8%B8%E7%94%A8cmd%E6%8C%87%E4%BB%A4) 1984 | 1985 | [Uri ? & =](https://github.com/zLulus/My_Note/wiki/Uri--%3F-&-=) 1986 | 1987 | [URI && URL && URN](https://github.com/zLulus/My_Note/wiki/URI-&&-URL-&&-URN) 1988 | 1989 | [公共网关接口(CGI)](https://github.com/zLulus/My_Note/wiki/%E5%85%AC%E5%85%B1%E7%BD%91%E5%85%B3%E6%8E%A5%E5%8F%A3) 1990 | 1991 | [无线通信](https://github.com/zLulus/My_Note/wiki/%E6%97%A0%E7%BA%BF%E9%80%9A%E4%BF%A1) 1992 | 1993 | [网络超时处理方法](https://github.com/zLulus/My_Note/wiki/%E7%BD%91%E7%BB%9C%E8%B6%85%E6%97%B6%E5%A4%84%E7%90%86%E6%96%B9%E6%B3%95) 1994 | 1995 | [Makefile(.mk)](https://github.com/zLulus/My_Note/wiki/Makefile(.mk)) 1996 | 1997 | [系统的硬件组成](https://github.com/zLulus/My_Note/wiki/%E7%B3%BB%E7%BB%9F%E7%9A%84%E7%A1%AC%E4%BB%B6%E7%BB%84%E6%88%90) 1998 | 1999 | [操作系统 && 虚拟机](https://github.com/zLulus/My_Note/wiki/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F-&&-%E8%99%9A%E6%8B%9F%E6%9C%BA) 2000 | 2001 | [清理system32文件夹](https://github.com/zLulus/My_Note/wiki/%E6%B8%85%E7%90%86system32%E6%96%87%E4%BB%B6%E5%A4%B9) 2002 | 2003 | [线程与进程](https://github.com/zLulus/My_Note/wiki/%E7%BA%BF%E7%A8%8B%E4%B8%8E%E8%BF%9B%E7%A8%8B) 2004 | 2005 | [进程编号(PID)](https://github.com/zLulus/My_Note/wiki/%E8%BF%9B%E7%A8%8B%E7%BC%96%E5%8F%B7(PID)) 2006 | 2007 | [空间复杂度和时间复杂度](https://github.com/zLulus/My_Note/wiki/%E7%A9%BA%E9%97%B4%E5%A4%8D%E6%9D%82%E5%BA%A6%E5%92%8C%E6%97%B6%E9%97%B4%E5%A4%8D%E6%9D%82%E5%BA%A6) 2008 | 2009 | [算法的基本概念及特性](https://github.com/zLulus/My_Note/wiki/%E7%AE%97%E6%B3%95%E7%9A%84%E5%9F%BA%E6%9C%AC%E6%A6%82%E5%BF%B5%E5%8F%8A%E7%89%B9%E6%80%A7) 2010 | 2011 | [网络数据传输格式](https://github.com/zLulus/My_Note/wiki/%E7%BD%91%E7%BB%9C%E6%95%B0%E6%8D%AE%E4%BC%A0%E8%BE%93%E6%A0%BC%E5%BC%8F) 2012 | 2013 | [Spyxx](https://github.com/zLulus/My_Note/wiki/Spyxx) 2014 | 2015 | [查看文件类型](https://github.com/zLulus/My_Note/wiki/%E6%9F%A5%E7%9C%8B%E6%96%87%E4%BB%B6%E7%B1%BB%E5%9E%8B) 2016 | 2017 | [理解localhost、127.0.0.1和0.0.0.0](https://github.com/zLulus/My_Note/wiki/%E7%90%86%E8%A7%A3localhost%E3%80%81127.0.0.1%E5%92%8C0.0.0.0) 2018 | 2019 | [如何分辨IP是外网IP还是内网IP](https://github.com/zLulus/My_Note/wiki/%E5%A6%82%E4%BD%95%E5%88%86%E8%BE%A8IP%E6%98%AF%E5%A4%96%E7%BD%91IP%E8%BF%98%E6%98%AF%E5%86%85%E7%BD%91IP) 2020 | 2021 | [Windows设置NFS客户端](https://github.com/zLulus/My_Note/wiki/Windows%E8%AE%BE%E7%BD%AENFS%E5%AE%A2%E6%88%B7%E7%AB%AF) 2022 | 2023 | ## CI/CD工具(持续集成/持续部署工具) 2024 | 2025 | [持续集成](https://github.com/zLulus/My_Note/wiki/%E6%8C%81%E7%BB%AD%E9%9B%86%E6%88%90) 2026 | 2027 | [Jenkins](https://github.com/zLulus/My_Note/wiki/Jenkins) 2028 | 2029 | [Azure Pipelines使用](https://github.com/zLulus/My_Note/wiki/Azure-Pipelines%E4%BD%BF%E7%94%A8) 2030 | 2031 | ## Fiddler 2032 | [Fiddler基础](https://github.com/zLulus/My_Note/wiki/Fiddler%E5%9F%BA%E7%A1%80) 2033 | 2034 | [Fiddler手机抓包](https://github.com/zLulus/My_Note/wiki/Fiddler%E6%89%8B%E6%9C%BA%E6%8A%93%E5%8C%85) 2035 | 2036 | [(转载)Fiddler 抓包https](https://github.com/zLulus/My_Note/wiki/(%E8%BD%AC%E8%BD%BD)Fiddler-%E6%8A%93%E5%8C%85https) 2037 | 2038 | [Fidder模拟发送请求](https://github.com/zLulus/My_Note/wiki/Fidder%E6%A8%A1%E6%8B%9F%E5%8F%91%E9%80%81%E8%AF%B7%E6%B1%82) 2039 | 2040 | [Fiddler原理](https://github.com/zLulus/My_Note/wiki/Fiddler%E5%8E%9F%E7%90%86) 2041 | 2042 | # 机器学习 2043 | [机器学习概述](https://github.com/zLulus/My_Note/wiki/%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E6%A6%82%E8%BF%B0) 2044 | 2045 | [模型相关概念](https://github.com/zLulus/My_Note/wiki/%E6%A8%A1%E5%9E%8B%E7%9B%B8%E5%85%B3%E6%A6%82%E5%BF%B5) 2046 | 2047 | ## 线性回归 2048 | ### 梯度下降 2049 | [梯度下降算法](https://github.com/zLulus/My_Note/wiki/%E6%A2%AF%E5%BA%A6%E4%B8%8B%E9%99%8D) 2050 | 2051 | [特征缩放(用于梯度下降算法)](https://github.com/zLulus/My_Note/wiki/%E7%89%B9%E5%BE%81%E7%BC%A9%E6%94%BE(%E7%94%A8%E4%BA%8E%E6%A2%AF%E5%BA%A6%E4%B8%8B%E9%99%8D%E7%AE%97%E6%B3%95)) 2052 | 2053 | ### 标准方程法 2054 | 2055 | [线性回归作业归纳(作业1)](https://github.com/zLulus/My_Note/wiki/%E7%BA%BF%E6%80%A7%E5%9B%9E%E5%BD%92%E4%BD%9C%E4%B8%9A%E5%BD%92%E7%BA%B3(%E4%BD%9C%E4%B8%9A1)) 2056 | 2057 | ## 逻辑回归 2058 | ### 梯度下降 2059 | 2060 | [逻辑回归作业归纳(作业2)](https://github.com/zLulus/My_Note/wiki/%E9%80%BB%E8%BE%91%E5%9B%9E%E5%BD%92%E4%BD%9C%E4%B8%9A%E5%BD%92%E7%BA%B3(%E4%BD%9C%E4%B8%9A2)) 2061 | 2062 | ## Octave 2063 | [Octave下载与运行](https://github.com/zLulus/My_Note/wiki/Octave%E4%B8%8B%E8%BD%BD%E4%B8%8E%E8%BF%90%E8%A1%8C) 2064 | 2065 | [Octave——function和commond](https://github.com/zLulus/My_Note/wiki/Octave%E2%80%94%E2%80%94function%E5%92%8Ccommond) 2066 | 2067 | [从命令行调用Octave与退出](https://github.com/zLulus/My_Note/wiki/%E4%BB%8E%E5%91%BD%E4%BB%A4%E8%A1%8C%E8%B0%83%E7%94%A8Octave%E4%B8%8E%E9%80%80%E5%87%BA) 2068 | 2069 | ### Octave基本语法 2070 | [Octave基本语法(一)——矩阵](https://github.com/zLulus/My_Note/wiki/Octave%E5%9F%BA%E6%9C%AC%E8%AF%AD%E6%B3%95%EF%BC%88%E4%B8%80%EF%BC%89%E2%80%94%E2%80%94%E7%9F%A9%E9%98%B5) 2071 | 2072 | [Octave基本语法(二)——微分方程和图形输出](https://github.com/zLulus/My_Note/wiki/Octave%E5%9F%BA%E6%9C%AC%E8%AF%AD%E6%B3%95%EF%BC%88%E4%BA%8C%EF%BC%89%E2%80%94%E2%80%94%E5%BE%AE%E5%88%86%E6%96%B9%E7%A8%8B%E5%92%8C%E5%9B%BE%E5%BD%A2%E8%BE%93%E5%87%BA) 2073 | 2074 | 2075 | ## 神经网络 2076 | 2077 | [神经网络作业归纳(作业3)](https://github.com/zLulus/My_Note/wiki/%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C%E4%BD%9C%E4%B8%9A%E5%BD%92%E7%BA%B3(%E4%BD%9C%E4%B8%9A3)) 2078 | 2079 | # learning how to learn 2080 | [两种思维模式——集中思维和发散思维](https://github.com/zLulus/My_Note/wiki/%E4%B8%A4%E7%A7%8D%E6%80%9D%E7%BB%B4%E6%A8%A1%E5%BC%8F%E2%80%94%E2%80%94%E9%9B%86%E4%B8%AD%E6%80%9D%E7%BB%B4%E5%92%8C%E5%8F%91%E6%95%A3%E6%80%9D%E7%BB%B4) 2081 | 2082 | [针对拖延症的解决方案](https://github.com/zLulus/My_Note/wiki/%E9%92%88%E5%AF%B9%E6%8B%96%E5%BB%B6%E7%97%87%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88) 2083 | 2084 | [帮助学习的方法](https://github.com/zLulus/My_Note/wiki/%E5%B8%AE%E5%8A%A9%E5%AD%A6%E4%B9%A0%E7%9A%84%E6%96%B9%E6%B3%95) 2085 | 2086 | [组块(Chunk)](https://github.com/zLulus/My_Note/wiki/%E7%BB%84%E5%9D%97(Chunk)) 2087 | 2088 | [过度识记(Overlearning)、刻意训练、交替练习](https://github.com/zLulus/My_Note/wiki/%E8%BF%87%E5%BA%A6%E8%AF%86%E8%AE%B0(Overlearning)%E3%80%81%E5%88%BB%E6%84%8F%E8%AE%AD%E7%BB%83%E3%80%81%E4%BA%A4%E6%9B%BF%E7%BB%83%E4%B9%A0) 2089 | 2090 | [记忆](https://github.com/zLulus/My_Note/wiki/%E8%AE%B0%E5%BF%86) 2091 | 2092 | # 拥有一颗产品心的程序媛 2093 | 2094 | [针对bilibili与kanbilibili的分析](https://github.com/zLulus/My_Note/wiki/%E9%92%88%E5%AF%B9bilibili%E4%B8%8Ekanbilibili%E7%9A%84%E5%88%86%E6%9E%90) 2095 | 2096 | [需求分析杂记](https://github.com/zLulus/My_Note/wiki/%E9%9C%80%E6%B1%82%E5%88%86%E6%9E%90%E6%9D%82%E8%AE%B0) 2097 | 2098 | # linux 2099 | 2100 | [Linux常用命令](https://github.com/zLulus/My_Note/wiki/Linux%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4) 2101 | 2102 | [ubuntu常识](https://github.com/zLulus/My_Note/wiki/ubuntu%E5%B8%B8%E8%AF%86) 2103 | 2104 | [linux 安装mysql & sql server数据库](https://github.com/zLulus/My_Note/wiki/linux-%E5%AE%89%E8%A3%85mysql-&-sql-server%E6%95%B0%E6%8D%AE%E5%BA%93) 2105 | 2106 | [linux使用supervisor](https://github.com/zLulus/My_Note/wiki/linux%E4%BD%BF%E7%94%A8supervisor) 2107 | 2108 | [Linux 删除日志写脚本思路](https://github.com/zLulus/My_Note/wiki/Linux-%E5%88%A0%E9%99%A4%E6%97%A5%E5%BF%97%E5%86%99%E8%84%9A%E6%9C%AC%E6%80%9D%E8%B7%AF) 2109 | 2110 | # 其他 2111 | [全链路体验设计(转载)](https://github.com/zLulus/My_Note/wiki/%E5%85%A8%E9%93%BE%E8%B7%AF%E4%BD%93%E9%AA%8C%E8%AE%BE%E8%AE%A1%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 2112 | 2113 | [单点登录SSO(转载)](https://github.com/zLulus/My_Note/wiki/%E5%8D%95%E7%82%B9%E7%99%BB%E5%BD%95SSO%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 2114 | 2115 | [技术面试官基础(转载)](https://github.com/zLulus/My_Note/wiki/%E6%8A%80%E6%9C%AF%E9%9D%A2%E8%AF%95%E5%AE%98%E5%9F%BA%E7%A1%80%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 2116 | 2117 | [测试工具(转载)](https://github.com/zLulus/My_Note/wiki/%E6%B5%8B%E8%AF%95%E5%B7%A5%E5%85%B7%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 2118 | 2119 | [常见性能问题选编(转载)](https://github.com/zLulus/My_Note/wiki/%E5%B8%B8%E8%A7%81%E6%80%A7%E8%83%BD%E9%97%AE%E9%A2%98%E9%80%89%E7%BC%96%EF%BC%88%E8%BD%AC%E8%BD%BD%EF%BC%89) 2120 | 2121 | [听讲座小记——关于全栈和学习方式等](https://github.com/zLulus/My_Note/wiki/%E5%90%AC%E8%AE%B2%E5%BA%A7%E5%B0%8F%E8%AE%B0%E2%80%94%E2%80%94%E5%85%B3%E4%BA%8E%E5%85%A8%E6%A0%88%E5%92%8C%E5%AD%A6%E4%B9%A0%E6%96%B9%E5%BC%8F%E7%AD%89) 2122 | 2123 | [企业级的高可用技术](https://github.com/zLulus/My_Note/wiki/%E4%BC%81%E4%B8%9A%E7%BA%A7%E7%9A%84%E9%AB%98%E5%8F%AF%E7%94%A8%E6%8A%80%E6%9C%AF) 2124 | 2125 | [如何抄网站](https://github.com/zLulus/My_Note/wiki/%E5%A6%82%E4%BD%95%E6%8A%84%E7%BD%91%E7%AB%99) 2126 | 2127 | [提交项目避免提交敏感内容](https://github.com/zLulus/My_Note/wiki/%E6%8F%90%E4%BA%A4%E9%A1%B9%E7%9B%AE%E9%81%BF%E5%85%8D%E6%8F%90%E4%BA%A4%E6%95%8F%E6%84%9F%E5%86%85%E5%AE%B9) 2128 | 2129 | [自动化集成解决方案——appveyor](https://github.com/zLulus/My_Note/wiki/%E8%87%AA%E5%8A%A8%E5%8C%96%E9%9B%86%E6%88%90%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88%E2%80%94%E2%80%94appveyor) 2130 | 2131 | [Geohash(转载)](https://github.com/zLulus/My_Note/wiki/Geohash(%E8%BD%AC%E8%BD%BD)) 2132 | 2133 | [VS Code插件管理](https://github.com/zLulus/My_Note/wiki/VS-Code%E6%8F%92%E4%BB%B6%E7%AE%A1%E7%90%86) 2134 | 2135 | [Windows PowerShell 集成脚本环境 (ISE)](https://github.com/zLulus/My_Note/wiki/Windows-PowerShell-%E9%9B%86%E6%88%90%E8%84%9A%E6%9C%AC%E7%8E%AF%E5%A2%83-(ISE)) 2136 | 2137 | [前端门户加载优化思路](https://github.com/zLulus/My_Note/wiki/%E5%89%8D%E7%AB%AF%E9%97%A8%E6%88%B7%E5%8A%A0%E8%BD%BD%E4%BC%98%E5%8C%96%E6%80%9D%E8%B7%AF) 2138 | 2139 | [本机桌面程序和web程序的通讯](https://github.com/zLulus/My_Note/wiki/%E6%9C%AC%E6%9C%BA%E6%A1%8C%E9%9D%A2%E7%A8%8B%E5%BA%8F%E5%92%8Cweb%E7%A8%8B%E5%BA%8F%E7%9A%84%E9%80%9A%E8%AE%AF) 2140 | 2141 | [vpn搭建(Shadowsocks)](https://github.com/zLulus/My_Note/wiki/vpn%E6%90%AD%E5%BB%BA(Shadowsocks)) 2142 | 2143 | [伪造IP思路](https://github.com/zLulus/My_Note/wiki/%E4%BC%AA%E9%80%A0IP%E6%80%9D%E8%B7%AF) 2144 | 2145 | [代理服务器](https://github.com/zLulus/My_Note/wiki/%E4%BB%A3%E7%90%86%E6%9C%8D%E5%8A%A1%E5%99%A8) 2146 | 2147 | [模拟浏览器访问](https://github.com/zLulus/My_Note/wiki/%E6%A8%A1%E6%8B%9F%E6%B5%8F%E8%A7%88%E5%99%A8%E8%AE%BF%E9%97%AE) 2148 | 2149 | [爬虫 && 数据分析](https://github.com/zLulus/My_Note/wiki/%E7%88%AC%E8%99%AB-&&-%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90) 2150 | 2151 | [C#实现OBB碰撞算法](https://github.com/zLulus/My_Note/wiki/C%23%E5%AE%9E%E7%8E%B0OBB%E7%A2%B0%E6%92%9E%E7%AE%97%E6%B3%95) 2152 | --------------------------------------------------------------------------------