Boo.Lang.Compiler.Steps.ContextAnnotations.SetAssemblyBuilder C# (CSharp) Метод

SetAssemblyBuilder() публичный статический Метод

public static SetAssemblyBuilder ( CompilerContext context, System builder ) : void
context CompilerContext
builder System
Результат void
        public static void SetAssemblyBuilder(CompilerContext context, System.Reflection.Emit.AssemblyBuilder builder)
        {
            if (null == context)
            {
                throw new ArgumentNullException("context");
            }
            if (null == builder)
            {
                throw new ArgumentNullException("builder");
            }
            context.Properties[AssemblyBuilderKey] = builder;
        }