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
385 B
14 lines
385 B
using System.Runtime.CompilerServices; |
|
using System.Runtime.InteropServices; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Ugly |
|
{ |
|
public class NoDecimalConstants |
|
{ |
|
[DecimalConstant(1, 0, 0u, 0u, 10u)] |
|
private static readonly decimal constant = 1.0m; |
|
private void MethodWithOptionalParameter([Optional][DecimalConstant(1, 0, 0u, 0u, 10u)] decimal parameter) |
|
{ |
|
} |
|
} |
|
}
|
|
|