ListItem.cs 492 B

12345678910111213141516171819202122232425
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Class: ListItem
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Implementation: yes
  9. * Status: 10%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. using System;
  14. using System.Collections;
  15. using System.Web;
  16. using System.Web.UI;
  17. namespace System.Web.UI.WebControls
  18. {
  19. public class ListItem : IStateManager, IParserAccessor, IAttributeAccessor
  20. {
  21. }
  22. }