關於C 引用的一些坑

2021-10-20 06:40:33 字數 495 閱讀 3043

這幾天在找專案的bug發現前輩的引用寫法有些問題,導致資料不同步。

所以寫一篇文章記錄一下:

c#裡面有很好用的各種容器,list dictionary等等,但是我們普通用法就是以一些值型別或者「string」來作為key,但是專案一旦大了,key可能就是乙個複雜的引用型別。

```csharp

using system;

using system.collections;

using system.collections.generic;

namespace test2021_2_25

}class people

public

people

(string name,job j)

}class

program

}}

true 

true

false

關於npm的一些坑

檢視全域性安裝的目錄用命令檢視 npm root g檢視npm配置資訊 npm config get cache npm config get prefix獲取npm配置資訊 npm config list 獲取npm配置資訊 預設情況下nodejs安裝會同時安裝npm 模組管理器 用於管理使用者r...

關於SqlSugar Mysql的一些坑

解決方案 作者在github上放了可以用的mysql.data.dll 版本,為 6.2.1.0 2 永遠的報錯 給定的關鍵字不在字典中 沒有找到解決方法 最終 我的是乙個asp.net mvc的新專案,經過安利用了sqlsugar,專案版本最初是.net 4.5 經過查閱大家的專案發現大部分使用的...

關於mysql的一些坑

使用create table newtable select from oldtable複製表時並沒有複製主鍵 索引以及自增屬性,要重新設定,即刪除後再加上,且設為auto increment的字段必須設為primary key create table newtable select from o...