DirectoryEntryConverter.cs 368 B

123456789101112131415161718192021222324
  1. //
  2. // System.DirectoryServices.Design.DirectoryEntryConverter.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2004 Andreas Nahr
  8. //
  9. //
  10. using System.ComponentModel;
  11. namespace System.DirectoryServices.Design
  12. {
  13. internal class DirectoryEntryConverter : TypeConverter
  14. {
  15. //TODO IMPLEMENT
  16. public DirectoryEntryConverter ()
  17. {
  18. }
  19. }
  20. }