System.Linq.Expressions.Expression.SwitchCaseProxy.SwitchCaseProxy C# (CSharp) Method

SwitchCaseProxy() public method

public SwitchCaseProxy ( SwitchCase node ) : System.Collections.ObjectModel
node SwitchCase
return System.Collections.ObjectModel
            public SwitchCaseProxy(SwitchCase node)
            {
                ContractUtils.RequiresNotNull(node, nameof(node));
                _node = node;
            }
Expression.SwitchCaseProxy