mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
392 B
14 lines
392 B
using System; |
|
|
|
namespace Decompiler |
|
{ |
|
public static class Options |
|
{ |
|
public static readonly bool NodeComments = false; |
|
public static readonly bool ReduceLoops = true; |
|
public static readonly bool ReduceConditonals = true; |
|
public static readonly bool ReduceAstJumps = true; |
|
public static readonly bool ReduceAstLoops = true; |
|
public static readonly bool ReduceAstOther = true; |
|
} |
|
}
|
|
|