Boo.Lang.Compiler.Steps.ProcessMethodBodies.MetaAttributeOf C# (CSharp) 메소드

MetaAttributeOf() 개인적인 정적인 메소드

private static MetaAttributeOf ( CandidateMethod method ) : MetaAttribute
method Boo.Lang.Runtime.CandidateMethod
리턴 MetaAttribute
        private static MetaAttribute MetaAttributeOf(CandidateMethod method)
        {
            return (MetaAttribute) method.Method.GetCustomAttributes(typeof (MetaAttribute), false).Single();
        }
ProcessMethodBodies