System.Linq.Expressions.SwitchCase.SwitchCase C# (CSharp) Method

SwitchCase() private method

private SwitchCase ( Expression body, ReadOnlyCollection testValues ) : System.Collections.Generic
body Expression
testValues ReadOnlyCollection
return System.Collections.Generic
        internal SwitchCase(Expression body, ReadOnlyCollection<Expression> testValues)
        {
            Body = body;
            TestValues = testValues;
        }