C# 클래스 UnityEngine.NUnit.Framework.Guard

Class used to guard against unexpected argument values by throwing an appropriate exception.
파일 보기 프로젝트 열기: Unity-Technologies/nunitv2

공개 메소드들

메소드 설명
ArgumentNotNull ( object value, string name ) : void

Throws an exception if an argument is null

ArgumentNotNullOrEmpty ( string value, string name ) : void

Throws an exception if a string argument is null or empty

메소드 상세

ArgumentNotNull() 공개 정적인 메소드

Throws an exception if an argument is null
public static ArgumentNotNull ( object value, string name ) : void
value object The value to be tested
name string The name of the argument
리턴 void

ArgumentNotNullOrEmpty() 공개 정적인 메소드

Throws an exception if a string argument is null or empty
public static ArgumentNotNullOrEmpty ( string value, string name ) : void
value string The value to be tested
name string The name of the argument
리턴 void