0
votes
4answers
32 views
No overload for method Error
public static class StringHelper
{
public static string HyphenAndSpaceReplacer(this string s)
{
string newString = s;
newString.Replace(char.Parse(" ", "_"));
newString.Re …
1
vote
2answers
86 views
Overloading a method in a subclass in C++
Suppose I have some code like this:
class Base {
public:
virtual int Foo(int) = 0;
};
class Derived : public Base {
public:
int Foo(int);
virtual double …
1
vote
1answer
23 views
Overloaded signification on msdn
I don't understand what does the overloaded term mean in the context of msdn library's page for MemoryStream Close method (or others like Dispose).
See the page here.
To me, overl …
0
votes
1answer
17 views
Overload method (specifically drawRect:) without subclassing.
I'm using a container UIView to house a UIImageView and do some custom drawing. At this point I'd like to do some drawing on top of my subview. So overriding drawRect: in my cont …
1
vote
5answers
98 views
Django inheritance: how to have one method for all subclasses?
I have a model
BaseModel
and several subclasses of it
ChildModelA(BaseModel), ChildModelB(BaseModel), ...
using multi-table inheritance. In future I plan to have dozens o …
0
votes
2answers
116 views
C++ overload resolution problem
I've got the following structure:
struct A
{
A();
virtual ~A();
virtual void Foo() =0;
};
struct E;
struct F;
struct B: public A
{
B();
virtual ~B();
…
0
votes
6answers
137 views
Why does this function overloading is not working?
Hy,
i know it sounds a very stupid question.
Here's what i found:
public static List<SomeDTO> GetData(Guid userId, int languageId)
{
// Do something here
}
public st …
1
vote
5answers
88 views
How do I unit test overloaded functions?
So I have a class that looks something like the following:
public class MyClass
{
DatabaseDependency _depend;
public MyClass(DatabaseDependency depend)
{
_de …
5
votes
1answer
130 views
C#, XmlDoc: How to reference method overloads
If I have these two methods
public Foo Get(string bar) { ... }
public Foo Get(int bar) { ... }
And write this piece of xml documentation on a different method
/// <summary&g …
2
votes
4answers
160 views
Methods overloading
When I call the EntryPoint with a parameter of type TemplateA, I always receive an exception, since the first overload is always called.
What I expected to happen is that the most …
0
votes
2answers
95 views
How to reference proper non-generic overload in c# ?
What do i write instead of ??????? to select proper overload?
using System;
using System.Collections.Generic;
namespace ConsoleApplication2
{
class A {}
class B : A {}
…
2
votes
3answers
206 views
method with same name and different parameters in Ruby
I have this code:
def setVelocity (x, y, yaw)
setVelocity (Command2d.new(x,y,yaw))
end
def setVelocity (vel)
......
end
vel is a Command2D class that has 3 attributes, is Comp …
3
votes
3answers
302 views
Overload Resolution in C# 4.0 using dynamic types
I don't have access to the C# 4.0 preview yet. But I am curious, what does the C# 4.0 runtime do when invoking an overloaded method in the following case. Does it resolve to the ge …
0
votes
5answers
177 views
Can you declare a variable length Generics type declaration?
I have an overloaded utility method called CheckDuration with following function signatures.
private static Action<int> CheckDuration(Action action)
private static A …
9
votes
3answers
589 views
C#: Passing null to overloaded method - which method is called?
Say I have two overloaded versions of a C# method:
void Method( TypeA a ) { }
void Method( TypeB b ) { }
I call the method with:
Method( null );
Which overload of the method …
