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

GetFieldRequiredCustomModifiers() статический приватный Метод

static private GetFieldRequiredCustomModifiers ( Boo.Lang.Compiler.Ast.Field field ) : System.Type[]
field Boo.Lang.Compiler.Ast.Field
Результат System.Type[]
        static Type[] GetFieldRequiredCustomModifiers(Field field)
        {
            if (field.IsVolatile)
                return new[] { IsVolatileType };
            return Type.EmptyTypes;
        }
EmitAssembly