System.Linq.Expressions.Expression.SwitchCaseProxy.SwitchCaseProxy C# (CSharp) 메소드

SwitchCaseProxy() 공개 메소드

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