Open.Core.Assert.IsNull C# (CSharp) 메소드

IsNull() 공개 메소드

Asserts that an object is not null.
public IsNull ( ) : void
리턴 void
        public void IsNull()
        {
            if (subject != null) ThrowError(string.Format("The value '{0}' should actually be null.", Format(subject)));
        }