16 lines
202 B
C#
16 lines
202 B
C#
|
// CS1501: No overload for method `TestCall' takes `1' arguments
|
||
|
// Line: 13
|
||
|
|
||
|
class C
|
||
|
{
|
||
|
static void TestCall (byte b, int a)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
dynamic d = 0;
|
||
|
TestCall (d);
|
||
|
}
|
||
|
}
|