Boo.Lang.Compiler.Steps.ProcessMethodBodies.GetRelatedPreOperator C# (CSharp) Метод

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

static private GetRelatedPreOperator ( UnaryOperatorType op ) : UnaryOperatorType
op UnaryOperatorType
Результат UnaryOperatorType
        static UnaryOperatorType GetRelatedPreOperator(UnaryOperatorType op)
        {
            switch (op)
            {
                case UnaryOperatorType.PostIncrement:
                    return UnaryOperatorType.Increment;
                case UnaryOperatorType.PostDecrement:
                    return UnaryOperatorType.Decrement;
            }
            throw new ArgumentException("op");
        }
ProcessMethodBodies