18 lines
261 B
C#
18 lines
261 B
C#
|
// CS1501: No overload for method `Foo' takes `0' arguments
|
||
|
// Line: 15
|
||
|
|
||
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
public class C
|
||
|
{
|
||
|
public static void Foo ([DefaultParameterValue(null)] string s)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
Foo ();
|
||
|
}
|
||
|
}
|