Interface IMatchNode<T>
- Namespace
- CilFi
- Assembly
- CilFi.Core.dll
Represents a single node in a match tree.
public interface IMatchNode<T> : IMatchNode
Type Parameters
TThe type of object that was matched.
- Inherited Members
Properties
ConcreteValue
Gets the value that matched the pattern.
T ConcreteValue { get; }
Property Value
- T
Pattern
Gets the pattern that was matched.
Pattern<T> Pattern { get; }
Property Value
- Pattern<T>