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