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.
Worksheets.Cells [2,5] .value.ToString();を実行してセルを読み取ったとき。
「System.NullReferenceException:オブジェクト参照がオブジェクトのインスタンスに設定されていません」というエラーが表示されます。
「if」ステートメントを使用せずに、nullをチェックしてから、値を割り当てるのに適した方法は何でしょうか。
string strValue = Worksheets.Cells[2,5].value==null ? string.Empty : Worksheets.Cells[2,5].value.ToString();
また
object objValue = Worksheets.Cells[2,5].value ?? string.Empty