a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
290 B
C#
15 lines
290 B
C#
// CS0407: A method or delegate `int int.Parse(string)' return type does not match delegate `object Test.Conv(string)' return type
|
|
// Line: 17
|
|
|
|
using System;
|
|
|
|
public class Test
|
|
{
|
|
private delegate object Conv(string str);
|
|
|
|
public static void Main()
|
|
{
|
|
Conv c = new Conv(int.Parse);
|
|
}
|
|
}
|