Boo.Lang.Compiler.Steps.EmitAssembly.GetAssemblyAttributeValue C# (CSharp) 메소드

GetAssemblyAttributeValue() 개인적인 메소드

private GetAssemblyAttributeValue ( string name ) : string
name string
리턴 string
        string GetAssemblyAttributeValue(string name)
        {
            Attribute attribute = GetAssemblyAttribute(name);
            if (null != attribute)
                return ((StringLiteralExpression)attribute.Arguments[0]).Value;
            return null;
        }
EmitAssembly