|
|
|
@ -19,7 +19,6 @@
@@ -19,7 +19,6 @@
|
|
|
|
|
using System; |
|
|
|
|
using System.Windows.Media; |
|
|
|
|
using ICSharpCode.Decompiler; |
|
|
|
|
using ICSharpCode.ILSpy.Options; |
|
|
|
|
using Mono.Cecil; |
|
|
|
|
|
|
|
|
|
namespace ICSharpCode.ILSpy.TreeNodes |
|
|
|
@ -58,13 +57,7 @@ namespace ICSharpCode.ILSpy.TreeNodes
@@ -58,13 +57,7 @@ namespace ICSharpCode.ILSpy.TreeNodes
|
|
|
|
|
|
|
|
|
|
public override object Text |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
|
{ |
|
|
|
|
return GetText(property, Language, isIndexer) + |
|
|
|
|
(DisplaySettingsPanel.CurrentDisplaySettings.ShowMetadataTokens ? |
|
|
|
|
" @" + property.MetadataToken.ToInt32().ToString("x8") : |
|
|
|
|
""); |
|
|
|
|
} |
|
|
|
|
get { return GetText(property, Language, isIndexer) + property.MetadataToken.ToSuffixString(); } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static object GetText(PropertyDefinition property, Language language, bool? isIndexer = null) |
|
|
|
|