Advertisement
Guest User

Untitled

a guest
Aug 16th, 2011
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.63 KB | None | 0 0
  1. //
  2. // Thanks to
  3. // Jon Skeet
  4. //
  5. // http://stackoverflow.com/questions/7059108/remove-duplicates-from-array-of-struct
  6. //
  7.  
  8. public class stAppInfo
  9. {
  10.     private string m_sTitle;
  11.     private string m_sRelativePath;
  12.     private string m_sCmdLine;
  13.     private bool m_bFindInstalled;
  14.     private string m_sFindTitle;
  15.     private string m_sFindVersion;
  16.     private bool m_bChecked;
  17.  
  18.     public string sTitle
  19.     {
  20.         get
  21.         {
  22.             return m_sTitle;
  23.         }
  24.         set
  25.         {
  26.             m_sTitle = value;
  27.         }
  28.     }
  29.     public string sRelativePath
  30.     {
  31.         get
  32.         {
  33.             return m_sRelativePath;
  34.         }
  35.         set
  36.         {
  37.             m_sRelativePath = value;
  38.         }
  39.     }
  40.     public string sCmdLine
  41.     {
  42.         get
  43.         {
  44.             return m_sCmdLine;
  45.         }
  46.         set
  47.         {
  48.             m_sCmdLine = value;
  49.         }
  50.     }
  51.     public bool bFindInstalled
  52.     {
  53.         get
  54.         {
  55.             return m_bFindInstalled;
  56.         }
  57.         set
  58.         {
  59.             m_bFindInstalled = value;
  60.         }
  61.     }
  62.     public string sFindTitle
  63.     {
  64.         get
  65.         {
  66.             return m_sFindTitle;
  67.         }
  68.         set
  69.         {
  70.             m_sFindTitle = value;
  71.         }
  72.     }
  73.     public string sFindVersion
  74.     {
  75.         get
  76.         {
  77.             return m_sFindVersion;
  78.         }
  79.         set
  80.         {
  81.             m_sFindVersion = value;
  82.         }
  83.     }
  84.     public bool bChecked
  85.     {
  86.         get
  87.         {
  88.             return m_bChecked;
  89.         }
  90.         set
  91.         {
  92.             m_bChecked = value;
  93.         }
  94.     }
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement