Esempio n. 1
0
 public string ProfileInformationShort()
 {
     return(string.Format("{0} {1} Version: {2} Timer0: {3} - {4} VCount: {5} VFrame: {6} GxStat: {7}",
                          DSType.ToString().Replace('_', ' '), MAC_Address.ToString("X"),
                          Language + " " + Version,
                          Timer0Min.ToString("X"), Timer0Max.ToString("X"), VCount.ToString("X"),
                          VFrame.ToString("X"), GxStat.ToString("X")));
 }
Esempio n. 2
0
 public string ProfileInformation()
 {
     return
         (string.Format(
              "{0} {1} Version: {2} ID: {3} SID: {4} Timer0: {5} - {6} VCount: {7} VFrame: {8} GxStat: {9} Keypresses: {10}",
              DSType.ToString().Replace('_', ' '), MAC_Address.ToString("X"),
              Language + " " + Version, ID, SID,
              Timer0Min.ToString("X"), Timer0Max.ToString("X"), VCount.ToString("X"), VFrame.ToString("X"),
              GxStat.ToString("X"), KeyString) + (SkipLR ? " (Skip L\\R)" : ""));
 }