Tagged Questions
The ambiguous-call tag has no wiki summary.
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
802 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
152 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
332 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 ...
2
votes
2answers
77 views
Why am I getting ambiguous call for the following functions?
Consider the following:
template <typename T>
class testString
{
public:
typedef T* iterator;
void insert(iterator aPos, size_t numChars, T aChar);
testString<T>& ...
2
votes
2answers
548 views
C++ templates and ambiguity problem
I have a subset of a pointer class that look like:
template <typename T>
struct Pointer
{
Pointer();
Pointer(T *const x);
Pointer(const Pointer &x);
template ...
2
votes
6answers
2k views
Java ambiguous type for method?
EDIT: This turned out not be a problem with the code at all, but with a bug in the Groovy Eclipse plugin (http://jira.codehaus.org/browse/GRECLIPSE-373)
Eclipse is giving me a weird error message ...
1
vote
1answer
456 views
E2251 Ambiguous overloaded call to
I inherited some Delphi components/code that currently compiles with C++ Builder 2007. I'm simply now trying to compile the components with C++ Builder RAD XE. I don't know Delphi (object pascal).
...
1
vote
1answer
1k views
Ambiguous reference error in VS2010
We have a type called Action in our library. We support VS2005, 2008 and now trying to support VS2010 too. When I include the namespace containing our 'Action' type and also 'System' together in a ...
0
votes
1answer
68 views
ASP.NET MVC error: The call is ambiguous between the following methods or properties
I have a problem.
In my View of a product I have a button to add it to cart which looks like this:
<div>
<% using(Html.BeginForm("AddToCart", "Cart")) {%>
<%: Html.HiddenFor(x ...
0
votes
3answers
201 views
How do I fix an “ambiguous” function call?
I'm working on a C++ program for class, and my compiler is complaining about an "ambiguous" function call. I suspect that this is because there are several functions defined with different parameters. ...
0
votes
4answers
70 views
ambiguous call ? javascript functions and objects
I see that in jQuery to be specific
var a= 'something' || function () {
}
or
var a = 'something' || { }
What does it mean? I know { } is an object json in javascript and am aware of ambiguous ...
0
votes
1answer
193 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 ...