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:
authorJeroen Frijters <jeroen@frijters.net>2015-02-18 14:24:12 +0300
committerJeroen Frijters <jeroen@frijters.net>2015-02-18 14:24:12 +0300
commit3ad1a30ea49866119c02e8079cbb9663e749ff41 (patch)
tree1db226dd2af45280b767522af12936f0af2459b4
parent77999ead540450ef4c7e6800f25b6dce3a1c9c04 (diff)
Fixed property custom modifiers.
-rw-r--r--Disassembler.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Disassembler.cs b/Disassembler.cs
index d3cd15d..b7e5c1a 100644
--- a/Disassembler.cs
+++ b/Disassembler.cs
@@ -695,7 +695,7 @@ namespace Ildasm
else if (compat == CompatLevel.V45)
{
lw.WriteLine();
- lw.WriteLine("// Microsoft (R) .NET Framework IL Disassembler. Version 4.0.30319.17929");
+ lw.WriteLine("// Microsoft (R) .NET Framework IL Disassembler. Version 4.0.30319.18020");
lw.WriteLine("// Copyright (c) Microsoft Corporation. All rights reserved.");
lw.WriteLine();
lw.WriteLine();
@@ -1065,6 +1065,7 @@ namespace Ildasm
}
WriteCallingConvention(lw, prop.__CallingConvention);
WriteSignatureType(lw, prop.PropertyType);
+ WriteCustomModifiers(lw, prop.__GetCustomModifiers());
if (lw.Column > 40)
{
lw.WriteLine();