Tagged Questions
92
votes
5answers
1k views
Why would adding a method add an ambiguous call, if it wouldn't be involved in the ambiguity
I have this class
public class Overloaded
{
public void ComplexOverloadResolution(params string[] something)
{
Console.WriteLine("Normal Winner");
}
public void ...
16
votes
5answers
292 views
Overload resolution and virtual methods
Consider the following code (it's a little long, but hopefully you can follow):
class A
{
}
class B : A
{
}
class C
{
public virtual void Foo(B b)
{
...
9
votes
1answer
171 views
Strange C# compiler behavior (overload resolution)
I've found very strange C# compiler behavior for following code:
var p1 = new SqlParameter("@p", Convert.ToInt32(1));
var p2 = new SqlParameter("@p", 1);
Assert.AreEqual(p1.Value, ...
8
votes
1answer
139 views
Why does C# compiler overload resolution algorithm treat static and instance members with equal signature as equal?
Let we have two members equal by signature, but one is static and another - is not:
class Foo
{
public void Test() { Console.WriteLine("instance"); }
public static void Test() { ...
6
votes
3answers
210 views
How does the method overload resolution system decide which method to call when a null value is passed?
So for instance you have a type like:
public class EffectOptions
{
public EffectOptions ( params object [ ] options ) {}
public EffectOptions ( IEnumerable<object> options ) {}
...
6
votes
2answers
189 views
Generics, overload resolution and delegates (sorry, can't find a better title) [closed]
Possible Duplicate:
Why is Func<T> ambiguous with Func<IEnumerable<T>>?
I noticed a very weird overload resolution issue with generics...
Consider the following methods:
...
5
votes
2answers
121 views
Method overload resolution using dynamic argument
This may have been answered before. I see many "dynamic method overload resolution" questions, but none that deal specifically with passing a dynamic argument. In the following code, in Test, the last ...
5
votes
2answers
214 views
Method overload resolution with regards to generics and IEnumerable
I noticed this the other day, say you have two overloaded methods:
public void Print<T>(IEnumerable<T> items) {
Console.WriteLine("IEnumerable T");
}
public void Print<T>(T ...
4
votes
1answer
70 views
C# 4.0 Compile time error, fails to resolve overload when wrong overload contains parameter types defined in .NET components that are not referenced [closed]
Here's simple code for a C# 4.0 console program:
using System.DirectoryServices.Protocols;
namespace OverloadTest
{
class Program
{
static void Main(string[] args)
{
var request = ...
4
votes
2answers
156 views
Overload Resolution and Optional Parameters in C# 4
I am working with some code that has seven overloads of a function TraceWrite:
void TraceWrite(string Application, LogLevelENUM LogLevel, string Message, string Data = "");
void TraceWrite(string ...
4
votes
1answer
339 views
Overloading, generic type inference and the 'params' keyword
I just noticed a strange behavior with overload resolution.
Assume that I have the following method :
public static void DoSomething<T>(IEnumerable<T> items)
{
// Whatever
// ...
3
votes
3answers
152 views
Why is “this” required here (extension method)?
Meta note: it is impossible to search for the word "this".
I've just run into a strange scenario in ASP.NET where the this keyword is required. But it's not for the purpose of resolving between local ...
2
votes
1answer
101 views
StackOverflowException in overloaded methods
I'm trying to call overloaded method in code like this:
public abstract class BaseClass<T>
{
public abstract bool Method(T other);
}
public class ChildClass : BaseClass<ChildClass>
{
...
2
votes
2answers
215 views
C# overload methods behavior with interface [closed]
Possible Duplicate:
C# 4: conflicting overloaded methods with optional parameters
I just have one small research and created next code.
namespace Test {
class Program
{
public ...
2
votes
3answers
271 views
Avoiding ambiguous invocation error with generic types
I have a two way dictionary class that I am making to allow me to do a fast lookup in either direction.
My class looks (partially) like this:
public class DoubleDictionary<A,B>
{
private ...
2
votes
2answers
414 views
Overloaded method-group argument confuses overload resolution?
The following call to the overloaded Enumerable.Select method:
var itemOnlyOneTuples = "test".Select<char, Tuple<char>>(Tuple.Create);
fails with an ambiguity error (namespaces removed ...
1
vote
2answers
164 views
Why does my lambda report “Not all code paths return a value”?
The following code gives an error
Not all code paths return a value in lambda expression of type
'System.Func'.
It highlights line =>. Not sure why?
var ui = new ...