Linqで単純なメソッドグループを呼び出したいのですが、このエラーが発生します。
The call is ambiguous between the following methods or properties: 'System.Linq.Enumerable.Select<string,int>(System.Collections.Generic.IEnumerable<string>, System.Func<string,int>)' and 'System.Linq.Enumerable.Select<string,int>(System.Collections.Generic.IEnumerable<string>, System.Func<string,int,int>)'
var num = new [] { "12345", "5432" };
num.Select(Convert.ToInt32);
どのメソッドを呼び出すかにはあいまいさがあることを理解しています。しかし、私の質問は、メソッドを通常は呼び出さずに署名を指定する方法があるかどうかです。ラムダ式を使用する必要がないため、タイピングを節約したいと思います。
ありがとう。