Browse Source

Remove `(experimental)` label from C# 9.0 settings.

pull/2251/head
Daniel Grunwald 5 years ago
parent
commit
f3a65c7672
  1. 12
      ICSharpCode.Decompiler/DecompilerSettings.cs

12
ICSharpCode.Decompiler/DecompilerSettings.cs

@ -176,7 +176,7 @@ namespace ICSharpCode.Decompiler
/// <summary> /// <summary>
/// Use C# 9 <c>nint</c>/<c>nuint</c> types. /// Use C# 9 <c>nint</c>/<c>nuint</c> types.
/// </summary> /// </summary>
[Category("C# 9.0 (experimental)")] [Category("C# 9.0 / VS 2019.8")]
[Description("DecompilerSettings.NativeIntegers")] [Description("DecompilerSettings.NativeIntegers")]
public bool NativeIntegers { public bool NativeIntegers {
get { return nativeIntegers; } get { return nativeIntegers; }
@ -194,7 +194,7 @@ namespace ICSharpCode.Decompiler
/// <summary> /// <summary>
/// Use C# 9 <c>init;</c> property accessors. /// Use C# 9 <c>init;</c> property accessors.
/// </summary> /// </summary>
[Category("C# 9.0 (experimental)")] [Category("C# 9.0 / VS 2019.8")]
[Description("DecompilerSettings.InitAccessors")] [Description("DecompilerSettings.InitAccessors")]
public bool InitAccessors { public bool InitAccessors {
get { return initAccessors; } get { return initAccessors; }
@ -210,9 +210,9 @@ namespace ICSharpCode.Decompiler
bool recordClasses = true; bool recordClasses = true;
/// <summary> /// <summary>
/// Use C# 9 <c>init;</c> property accessors. /// Use C# 9 <c>record</c> classes.
/// </summary> /// </summary>
[Category("C# 9.0 (experimental)")] [Category("C# 9.0 / VS 2019.8")]
[Description("DecompilerSettings.RecordClasses")] [Description("DecompilerSettings.RecordClasses")]
public bool RecordClasses { public bool RecordClasses {
get { return recordClasses; } get { return recordClasses; }
@ -231,7 +231,7 @@ namespace ICSharpCode.Decompiler
/// Use C# 9 <c>delegate* unmanaged</c> types. /// Use C# 9 <c>delegate* unmanaged</c> types.
/// If this option is disabled, function pointers will instead be decompiled with type `IntPtr`. /// If this option is disabled, function pointers will instead be decompiled with type `IntPtr`.
/// </summary> /// </summary>
[Category("C# 9.0 (experimental)")] [Category("C# 9.0 / VS 2019.8")]
[Description("DecompilerSettings.FunctionPointers")] [Description("DecompilerSettings.FunctionPointers")]
public bool FunctionPointers { public bool FunctionPointers {
get { return functionPointers; } get { return functionPointers; }
@ -629,7 +629,7 @@ namespace ICSharpCode.Decompiler
/// <summary> /// <summary>
/// Support GetEnumerator extension methods in foreach. /// Support GetEnumerator extension methods in foreach.
/// </summary> /// </summary>
[Category("C# 9.0 (experimental)")] [Category("C# 9.0 / VS 2019.8")]
[Description("DecompilerSettings.DecompileForEachWithGetEnumeratorExtension")] [Description("DecompilerSettings.DecompileForEachWithGetEnumeratorExtension")]
public bool ForEachWithGetEnumeratorExtension { public bool ForEachWithGetEnumeratorExtension {
get { return forEachWithGetEnumeratorExtension; } get { return forEachWithGetEnumeratorExtension; }

Loading…
Cancel
Save