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