ToString() public method

public ToString ( ) : string
return string
Exemplo n.º 1
0
        public static bool StructNotBoxed()
        {
            NotBoxedStruct s = new NotBoxedStruct();

            s.ToString();
            s.ToString();
            s.ToString();
            return(s.I == 3);
        }
Exemplo n.º 2
0
 public static bool StructNotBoxed()
 {
     NotBoxedStruct s = new NotBoxedStruct();
     s.ToString();
     s.ToString();
     s.ToString();
     return s.I == 3;
 }