Ejemplo n.º 1
0
 public static ostringstream operator +(ostringstream ImpliedObject, int value)
 {
     return(new ostringstream(ImpliedObject.str() + value.ToString()));
 }
Ejemplo n.º 2
0
 public static ostringstream operator +(ostringstream ImpliedObject, string str)
 {
     return(new ostringstream(ImpliedObject.str() + str));
 }