Mono.Cecil.Inject.InjectionDefinition.Assert C# (CSharp) Method

Assert() private method

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