Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
条件に応じて変数の値を変更したりそのままにしておくことができる特別な式や、C# に組み込まれている何らかの種類または構文糖衣はありますか? 私は次のことを意味します:
str = (condition) ? "modifiedString" : str;
また
if (condition) str = "modifiedString";
しかし、ヌル合体演算子の単純さで。何かのようなもの
str = (condition) ?? "modifiedString"
どうですか
if(condition) str = "modified"
それはまさにあなたが望むものではありませんか?