コード例 #1
0
 public IntersectionResult(T value)
 {
     ResultType = IntersectionResultType.Value;
     Value      = value;
 }
コード例 #2
0
 public IntersectionResult(List <T> values)
 {
     ResultType = IntersectionResultType.Multiple;
     Values     = values;
 }
コード例 #3
0
 public IntersectionResult(IntersectionResultType resultType)
 {
     ResultType = resultType;
 }