예제 #1
0
 internal static DerSet FromVector(
     Asn1EncodableVector v,
     bool needsSorting)
 {
     return(v.Count < 1 ? Empty : new DerSet(v, needsSorting));
 }
예제 #2
0
 /**
  * @param v - a vector of objects making up the set.
  */
 public DerSet(
     Asn1EncodableVector v)
     : this(v, true)
 {
 }
예제 #3
0
 public static DerSet FromVector(
     Asn1EncodableVector v)
 {
     return(v.Count < 1 ? Empty : new DerSet(v));
 }