以下のコード行を参照してください。
DataTable [] _tables = null;
// Throws System.NullReferenceException
_tables.GetType();
// Throws System.ArgumentNullException
_tables.Count();
このコード行では、_tables
参照があり、そのシステム定義関数GetType()
とにアクセスしようとしていますが、両方とも例外をスローしますが、参照の値が同じであるため、Count()
なぜ.Count()
スローするのですか?System.ArgumentNullException
null