Guest User

Untitled

a guest
Feb 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class ComboBoxItem()
  2. {
  3. string displayValue;
  4. string hiddenValue;
  5.  
  6. //Constructor
  7. public ComboBoxItem (string d, string h)
  8. {
  9. displayValue = d;
  10. hiddenValue = h;
  11. }
  12.  
  13. //Accessor
  14. public string HiddenValue
  15. {
  16. get
  17. {
  18. return hiddenValue;
  19. }
  20. }
  21.  
  22. //Override ToString method
  23. public override string ToString()
  24. {
  25. return displayValue;
  26. }
  27. }
Add Comment
Please, Sign In to add comment