C# 클래스 Ext.Net.Utilities.Verify

파일 보기 프로젝트 열기: extnet/Utilities

공개 메소드들

메소드 설명
IsNotNull ( object parameter, string parameterName ) : void

Checks if parameter is not null. Throws ArgumentNullException with name of parameter if null

IsString ( object value, string paramterName ) : void

Checks if the value is a type of String object. Throws ArgumentException if value is not a String type object.

메소드 상세

IsNotNull() 공개 정적인 메소드

Checks if parameter is not null. Throws ArgumentNullException with name of parameter if null
public static IsNotNull ( object parameter, string parameterName ) : void
parameter object The parameter value to check.
parameterName string The name of the parameter.
리턴 void

IsString() 공개 정적인 메소드

Checks if the value is a type of String object. Throws ArgumentException if value is not a String type object.
public static IsString ( object value, string paramterName ) : void
value object The object to check.
paramterName string The name of the parameter.
리턴 void