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.
文字列があり、それを string.Empty に初期化すると、
var mystring=string.Empty;
また
string mystring = string.Empty;
上記の 2 つのうち、パフォーマンスやその他の考慮事項で優れているのはどれですか?
どちらも同じ IL コードにコンパイルされるため、コード実行中のパフォーマンスの違いはありません。
ただし、2 番目の方が読みやすいので、そのようにします。