Mono.Cecil.Inject.InjectionDefinition.Assert C# (CSharp) 메소드

Assert() 개인적인 메소드

private Assert ( bool val, string message ) : void
val bool
message string
리턴 void
        internal void Assert(bool val, string message)
        {
            if (!val)
                throw new InjectionDefinitionException(message);
        }