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.
21 lines
446 B
21 lines
446 B
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) |
|
{ |
|
} |
|
} |
|
}
|
|
|