關(guān)于C# 中 ?? 符號(hào)的小理解
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
摘錄一個(gè)今天看代碼時(shí)發(fā)現(xiàn)的一種簡(jiǎn)潔代碼的寫法: public RelayCommand ConnectCommand { get { return _connectCommand ?? (_connectCommand = new RelayCommand( async () => await ConnectAsync(), () => CanConnect)); } } 對(duì)!沒(méi)錯(cuò)!就是想記錄下這一句: return _connectCommand ?? (_connectCommand = new RelayCommand( async () => await ConnectAsync(), () => CanConnect)); 炒雞激動(dòng)!實(shí)際上" ?? "這個(gè)運(yùn)算符表示的是前面的變量如果為空則返回 "??" 后面的值! 該文章在 2021/1/29 21:55:15 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |