@@ -4058,14 +4058,14 @@ await TestConversionVisualBasicToCSharpAsync(
40584058 Sub M(Optional a As String = ""a"", ByRef Optional b As String = ""b"")
40594059 Dim s As String = """"
40604060
4061- M() 'omitted implicitely
4062- M(,) 'omitted explicitely
4061+ M() 'omitted implicitly
4062+ M(,) 'omitted explicitly
40634063
4064- M(s) 'omitted implicitely
4065- M(s,) 'omitted explicitely
4064+ M(s) 'omitted implicitly
4065+ M(s,) 'omitted explicitly
40664066
4067- M(a:=s) 'omitted implicitely
4068- M(a:=s, ) 'omitted explicitely
4067+ M(a:=s) 'omitted implicitly
4068+ M(a:=s, ) 'omitted explicitly
40694069 End Sub
40704070End Class" , @"using System.Runtime.InteropServices;
40714071
@@ -4076,19 +4076,19 @@ public void M([Optional, DefaultParameterValue(""a"")] string a, [Optional, Defa
40764076 string s = """";
40774077
40784078 string argb = ""b"";
4079- M(b: ref argb); // omitted implicitely
4079+ M(b: ref argb); // omitted implicitly
40804080 string argb1 = ""b"";
4081- M(b: ref argb1); // omitted explicitely
4081+ M(b: ref argb1); // omitted explicitly
40824082
40834083 string argb2 = ""b"";
4084- M(s, b: ref argb2); // omitted implicitely
4084+ M(s, b: ref argb2); // omitted implicitly
40854085 string argb3 = ""b"";
4086- M(s, b: ref argb3); // omitted explicitely
4086+ M(s, b: ref argb3); // omitted explicitly
40874087
40884088 string argb4 = ""b"";
4089- M(a: s, b: ref argb4); // omitted implicitely
4089+ M(a: s, b: ref argb4); // omitted implicitly
40904090 string argb5 = ""b"";
4091- M(a: s, b: ref argb5); // omitted explicitely
4091+ M(a: s, b: ref argb5); // omitted explicitly
40924092 }
40934093}" ) ;
40944094 }
0 commit comments