You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
494 B
C#

/*
* C# Program to Illustrate NullRefernce Exception
*/
using System;
class Program
{
static void Main()
{
try
{
string value = null;
if (value.Length == 0)
{
Console.WriteLine(value);
}
}
catch(NullReferenceException e)
{
Console.WriteLine(e.Message);
}
Console.Read();
}
}