NamespaceInfo.cs 224 B

1234567891011
  1. using System;
  2. using System.Collections;
  3. namespace Mono.CompilerServices.SymbolWriter
  4. {
  5. internal class NamespaceInfo
  6. {
  7. public string Name;
  8. public int NamespaceID;
  9. public ArrayList UsingClauses = new ArrayList();
  10. }
  11. }