Skip to content

Commit cdad000

Browse files
RexJaeschkeBillWagner
authored andcommitted
Add files via upload
1 parent f9af002 commit cdad000

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System;
2+
using System.Runtime.CompilerServices;
3+
#nullable enable
4+
class Test
5+
{
6+
public static void M(int val = 0, [CallerArgumentExpression("val")] string? text = null)
7+
{
8+
Console.WriteLine($"val = {val}, text = <{text}>");
9+
}
10+
}

0 commit comments

Comments
 (0)