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