Boo.Lang.Compiler.Steps.EmitAssembly.GetConditionalSymbols C# (CSharp) Метод

GetConditionalSymbols() приватный Метод

private GetConditionalSymbols ( ExternalMethod method ) : IEnumerable
method ExternalMethod
Результат IEnumerable
        private IEnumerable<string> GetConditionalSymbols(ExternalMethod method)
        {
            foreach (ConditionalAttribute attr in method.MethodInfo.GetCustomAttributes(typeof(ConditionalAttribute), false))
                yield return attr.ConditionString;
        }

Same methods

EmitAssembly::GetConditionalSymbols ( IMethod method ) : IEnumerable
EmitAssembly::GetConditionalSymbols ( Boo.Lang.Compiler.TypeSystem.InternalMethod method ) : IEnumerable
EmitAssembly