示例#1
0
        private SemanticResultKey(string semanticResultKey)
            : base()
        {
            Helpers.ThrowIfEmptyOrNull(semanticResultKey, nameof(semanticResultKey));

            _semanticKey = new SemanticKeyElement(semanticResultKey);
        }
示例#2
0
 private SemanticResultKey(string semanticResultKey)
 {
     Helpers.ThrowIfEmptyOrNull(semanticResultKey, "semanticResultKey");
     _semanticKey = new SemanticKeyElement(semanticResultKey);
 }