public ConstStr Intersect(ConstStr con1, ConstStr con2) { if (con1.String.Equals(con2.String)) { return(con1); } else { return(null); } }
public int Size(ConstStr str) { throw new NotImplementedException(); }