예제 #1
0
 private CompletionCandidateResult(CompletionCandidateResultType resultType, IEnumerable <CompletionCandidateValue> values)
 {
     ResultType = resultType;
     Values     = values.ToArray();
 }
예제 #2
0
 public CompletionCandidateResult(CompletionCandidateResultType resultType)
 {
     ResultType = resultType;
     Values     = Array.Empty <CompletionCandidateValue>();
 }