Catch NullReferenceException Exception
using System;
class MyClass {
public int Value;
}
class MainClass {
public static void Main() {
try {
MyClass MyObject = new MyClass();
MyObject = null;
MyObject.Value = 123;
} catch (NullReferenceException) {
Console.WriteLine("Cannot reference a null object.");
}
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
|