|
|
|
@ -808,6 +808,18 @@ namespace ICSharpCode.Decompiler
@@ -808,6 +808,18 @@ namespace ICSharpCode.Decompiler
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool showDebugInfo; |
|
|
|
|
|
|
|
|
|
public bool ShowDebugInfo { |
|
|
|
|
get { return showDebugInfo; } |
|
|
|
|
set { |
|
|
|
|
if (showDebugInfo != value) { |
|
|
|
|
showDebugInfo = value; |
|
|
|
|
OnPropertyChanged(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#region Options to aid VB decompilation
|
|
|
|
|
bool assumeArrayLengthFitsIntoInt32 = true; |
|
|
|
|
|
|
|
|
@ -854,33 +866,6 @@ namespace ICSharpCode.Decompiler
@@ -854,33 +866,6 @@ namespace ICSharpCode.Decompiler
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool alwaysGenerateExceptionVariableForCatchBlocks = false; |
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets/Sets whether to always generate exception variables in catch blocks
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool AlwaysGenerateExceptionVariableForCatchBlocks { |
|
|
|
|
get { return alwaysGenerateExceptionVariableForCatchBlocks; } |
|
|
|
|
set { |
|
|
|
|
if (alwaysGenerateExceptionVariableForCatchBlocks != value) { |
|
|
|
|
alwaysGenerateExceptionVariableForCatchBlocks = value; |
|
|
|
|
OnPropertyChanged(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool showDebugInfo; |
|
|
|
|
|
|
|
|
|
public bool ShowDebugInfo { |
|
|
|
|
get { return showDebugInfo; } |
|
|
|
|
set { |
|
|
|
|
if (showDebugInfo != value) { |
|
|
|
|
showDebugInfo = value; |
|
|
|
|
OnPropertyChanged(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Options to aid F# decompilation
|
|
|
|
|