CompressedStack.cs 274 B

12345678910111213141516171819202122
  1. //
  2. // System.Threading.Thread.cs
  3. //
  4. // Author:
  5. // Zoltan Varga ([email protected])
  6. //
  7. // (C) 2004 Novell (http://www.novell.com)
  8. //
  9. namespace System.Threading
  10. {
  11. public class CompressedStack {
  12. internal CompressedStack ()
  13. {
  14. }
  15. ~CompressedStack ()
  16. {
  17. }
  18. }
  19. }