Ancestry.Daisy.Statements.ReflectionStatementDefinition.Link C# (CSharp) Method

Link() public method

public Link ( string statement ) : ILinkedStatement
statement string
return ILinkedStatement
        public ILinkedStatement Link(string statement)
        {
            var match = MatchingCriteria.Match(statement);
            if (!match.Success) return null;
            return new ReflectionLinkedStatement(this, statement, match);
        }