Tagged Questions

6
votes
5answers
338 views

Ambiguous function/constructor call in C#

The following code causes a compiler error, as it is ambiguous call but the problem if we use object instead of ArrayList no error happens and the string version works fine; Do you have an explanation ...
6
votes
3answers
803 views

Question about ambiguous calls in C#

I have a question that's not really a problem, but something that made me a little curious. I have a class with two methods in it. One is a static method and the other one is an instance method. The ...
4
votes
2answers
124 views

What makes a Min(byte,int) call ambiguous?

I do not understand why the following is ambiguous according to compiler: byte x = 200; int novaCervena = Math.Min(x, 10); And once I add +1 to byte it is not byte x = 200; int novaCervena = ...
4
votes
6answers
153 views

How to resolve ambiguity when argument is null?

Compiling the following code will return The call is ambiguous between the following methods or properties error. How to resolve it since I can't explicitly convert null to any of those classes? ...
4
votes
2answers
336 views

How to resolve ambigiously named extension method?

I have a DataTable that I'm trying to enumerate over with the AsEnumerable extension method on System.Linq.Enumerable. The problem is that there is an identically named extension method on ...
3
votes
1answer
1k views

Avoiding an ambiguous match exception

I am invoking a static method Parse on a type via reflection because I do not know the type of the object at compile-time (I do know, however, it has a Parse method, taking a string). However, I am ...
0
votes
1answer
195 views

Why am I getting an “Ambiguous Match” error here?

The page that I'm currently working on searches for various entities based on what portfolio they are in. In order to apply the other search criteria (besides for Portfolio) the page first gets the ...