blob: 4a22b81d6c4ef4ccab2a946a513f8ea3b52d2762 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// CS1502: The best overloaded method match for `System.Console.WriteLine(bool)' has some invalid arguments
// Line: 10
using System;
public class MainClass
{
public static void Main()
{
test MyBug = new test();
Console.WriteLine (MyBug.mytest());
}
}
public class test
{
public void mytest()
{
Console.WriteLine("test");
}
}
|