Initializes an instance of the ArgumentNullException class with a specified error message and the name of the parameter that causes this exception.
Namespace:
System
Assembly:
mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public Sub New ( _
paramName As String, _
message As String _
)
Dim paramName As String
Dim message As String
Dim instance As New ArgumentNullException(paramName, _
message)
public ArgumentNullException(
string paramName,
string message
)
public:
ArgumentNullException(
String^ paramName,
String^ message
)
public function ArgumentNullException(
paramName : String,
message : String
)
This constructor initializes the Message property of the new instance using the value of the message parameter. The content of the message parameter is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
This constructor initializes the ParamName property of the new instance using the paramName parameter. The content of paramName is intended to be understood by humans.
The following table shows the initial property values for an instance of ArgumentNullException.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
.NET Compact Framework
Supported in: 3.5, 2.0, 1.0
XNA Framework
Supported in: 3.0, 2.0, 1.0
Reference