System.Linq.Expressions.Expression.SwitchCaseProxy.SwitchCaseProxy C# (CSharp) Méthode

SwitchCaseProxy() public méthode

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