3
votes
4answers
67 views
Visual Studio Intellisense not showing methods on generic overload
Given the following two interfaces (these are small examples, not my actual implementation):
public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAss …
0
votes
3answers
66 views
Python: Binding method
In following example I am trying to bind a method object via types.MethodType(...). It does not seem to work. Any suggestions? Thanks in advance.
import types
class Base:
def …
0
votes
4answers
69 views
getClass().getMethod(”name”, unkown)
For a really abstract application I am creating, I need to call methods without knowing their parameter types and only knowing the parameters in a String shape.
Let say I have the …
9
votes
7answers
151 views
Behaviour of final static method
I have been playing around with modifiers with static method and came across a weird behaviour.
As we know, static methods cannot be overridden, as they are associated with class …
2
votes
5answers
121 views
What is meant by “implement a wrapper method”?
I have been given a programming assignment and one of the things I have to do is implement method which a wrapper method which relies on another method to sort the coordinates from …
0
votes
2answers
28 views
unable to return to main() from a method reading standard input stream
I am basically trying to return from a method which reads user input from the standard input stream. Since the user has the option to quit the application, I am trying to figure ou …
2
votes
6answers
103 views
How to use a method from a class in another class without extending
Sorry if my question sounds weird lol I'll try to explain.
I have 4 classes: Karakter, Karakters, Orc, Human. Orc and Human both extend Karakter. Karakters is an ArrayList with Ka …
0
votes
2answers
48 views
AppleScript: Index of substring in string
I want to create a function that returns a substring of a specific string from the beginning of said string up to but not including the start of another specific string. Ideas?
…
1
vote
4answers
47 views
Setting the Page-Title in .Net using C# from a Class
Question,
How do i set the title of a page from a class. Is it even possible? I can and have set the page title from a page itself and a usercontrol.
Can I, How Do I do this vi …
0
votes
1answer
25 views
What are best efficent ways to call WebService methods from JavaScript?
Hi,
Actually I came up with this question, because of an example in one book I have tried and which did not work somehow. I am following "Professional JavaScriptâ„¢ for Web Develope …
0
votes
3answers
33 views
Using the jQuery width() and height() methods
Can you use the .width() and .height() methods to increase the height like $('x').width('+=2px') or $('x').height('+=2px')?
I couldn't find any information about this on the jQuer …
1
vote
4answers
102 views
Can method parameters be dynamic in C#
In c# 4.0, are dynamic method parameters possible, like in the following code?
public string MakeItQuack(dynamic duck)
{
string quack = duck.Quack();
return quack;
}
I've ma …
0
votes
3answers
63 views
How To Pass a Dictionary To a Function
Alright, so I think I'm doing this the right way. I'm new to objective-C, so I'm not sure about the syntax... I have a set of code that I need to call multiple times, from differ …
2
votes
3answers
51 views
How can I get a reference to a method that contains the arguments used for invocations, in Ruby?
Given this code:
a = {1=>2}
m = a.method(:[])
I know that I can now use :
value = m.call(1)
and it will return 2. The thing is, what do I need to change so that I can call …
0
votes
2answers
69 views
C return and comparation inline
Hi everyone,
I'm just to figure out what does this method do, I know there must be a way to put this line by line, can you help me please?
Thanks
int
conditional ( int n, EXPRES …
