
committed by
Siegfried Pammer

15 changed files with 105 additions and 7 deletions
-
3ICSharpCode.Decompiler.Tests/Helpers/Tester.cs
-
4ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj
-
6ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs
-
21ICSharpCode.Decompiler.Tests/TestCases/Pretty/ParamsCollections.cs
-
3ICSharpCode.Decompiler/CSharp/CSharpLanguageVersion.cs
-
1ICSharpCode.Decompiler/CSharp/Transforms/EscapeInvalidIdentifiers.cs
-
24ICSharpCode.Decompiler/DecompilerSettings.cs
-
11ICSharpCode.Decompiler/TypeSystem/DecompilerTypeSystem.cs
-
3ICSharpCode.Decompiler/TypeSystem/Implementation/AttributeListBuilder.cs
-
2ICSharpCode.Decompiler/TypeSystem/Implementation/KnownAttributes.cs
-
18ICSharpCode.Decompiler/TypeSystem/Implementation/MetadataParameter.cs
-
1ILSpy/Languages/CSharpLanguage.cs
-
9ILSpy/Properties/Resources.Designer.cs
-
3ILSpy/Properties/Resources.resx
-
3ILSpy/Properties/Resources.zh-Hans.resx
@ -0,0 +1,21 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
|||
{ |
|||
public static class ParamsCollections |
|||
{ |
|||
public static void ParamsEnumerable(params IEnumerable<int> values) |
|||
{ |
|||
} |
|||
public static void ParamsList(params List<int> values) |
|||
{ |
|||
} |
|||
public static void ParamsReadOnlySpan(params ReadOnlySpan<int> values) |
|||
{ |
|||
} |
|||
public static void ParamsSpan(params Span<int> values) |
|||
{ |
|||
} |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue