ToString() public method

public ToString ( ) : string
return string
Exemplo n.º 1
0
 public void debugMonitorInfo(int m, SortOrder d, int o, DataRow dr, string s)
 {
     if (dr == null)
     {
         this.screensaver.monitors[m].showInfoOnMonitor("getSequentialImage(monitor " + m + ", direction " + d.ToString() + ", offset " + o + ") [" + s + "]: null");
     }
     else
     {
         this.screensaver.monitors[m].showInfoOnMonitor("getSequentialImage(monitor " + m + ", direction " + d.ToString() + ", offset " + o + ") [" + s + "]: " + dr["id"]);
     }
 }
 public void debugMonitorInfo(int m, SortOrder d, int o, DataRow dr, string s)
 {
     if (dr == null) this.screensaver.monitors[m].showInfoOnMonitor("getSequentialImage(monitor " + m + ", direction " + d.ToString() + ", offset "+o+") ["+s+"]: null");
     else this.screensaver.monitors[m].showInfoOnMonitor("getSequentialImage(monitor " + m + ", direction " + d.ToString() + ", offset " + o + ") [" + s + "]: " + dr["id"]);
 }