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.
これらの4つの方法のうち、パフォーマンスに関してコントロールのテキストが空であるかどうかを確認するための最も効率的な方法はどれですか?
someObject.Text != "" someObject.Text != string.Empty someObject.Text.Length != 0 !string.IsNullOrEmpty(someObject.Text)
これは、早期最適化と呼ばれるものです。
簡単な答え: 心配しないでください。どれでも構いません。