Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikdasm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
index fcee1ea..8d99b66 100644
--- a/Program.cs
+++ b/Program.cs
@@ -51,6 +51,14 @@ namespace Ildasm
{ "moduleref", v =>tableToDump = MetadataTableIndex.ModuleRef },
{ "exported", v =>tableToDump = MetadataTableIndex.ExportedType },
{ "customattr", v =>tableToDump = MetadataTableIndex.CustomAttribute },
+ { "module", v => tableToDump = MetadataTableIndex.Module },
+ { "document", v => tableToDump = MetadataTableIndex.Document },
+ { "methoddebuginformation", v => tableToDump = MetadataTableIndex.MethodDebugInformation },
+ { "localscope", v => tableToDump = MetadataTableIndex.LocalScope },
+ { "localvariable", v => tableToDump = MetadataTableIndex.LocalVariable },
+ { "localconstant", v => tableToDump = MetadataTableIndex.LocalConstant },
+ { "importscope", v =>tableToDump = MetadataTableIndex.ImportScope },
+ { "customdebuginfo", v => tableToDump = MetadataTableIndex.CustomDebugInformation },
};
args = p.Parse (args).ToArray ();
if (printUsage) {