CheckArgumentNotNull - метод
Throws ArgumentNullException if the given argument is null.
Пространство имён: Tessa.PlatformСборка: Tessa (в Tessa.dll) Версия: 3.6.0.23
public static void ArgumentNotNull(
[CanBeNullAttribute] Object argumentValue,
[NotNullAttribute] string argumentName
)
Public Shared Sub ArgumentNotNull (
<CanBeNullAttribute> argumentValue As Object,
<NotNullAttribute> argumentName As String
)
public:
static void ArgumentNotNull(
[CanBeNullAttribute] Object^ argumentValue,
[NotNullAttribute] String^ argumentName
)
static member ArgumentNotNull :
[<CanBeNullAttribute>] argumentValue : Object *
[<NotNullAttribute>] argumentName : string -> unit
Параметры
- argumentValue Object
-
Argument value to test.
- argumentName String
-
Name of the argument being tested.
ArgumentNullException |
if tested value if null.
|