Top "Interface-implementation" questions

How do you quickly find the implementation(s) of an interface's method?

Is there a quick way to find all of the implementations of, not references to, an interface's method/property/etc? …

c# visual-studio intellisense interface-implementation
What interfaces do all arrays implement in C#?

As a new .NET 3.5 programmer, I started to learn LINQ and I found something pretty basic that I haven't noticed …

c# .net arrays interface-implementation
How do I pass an ArrayList to method that takes a collection as an input

I want to pass some ArrayList<Integer> X into method a(Collection<Integer> someCol) that takes …

java arraylist collections interface-implementation
How many interfaces are allowed to be implemented?

In C#: How many interfaces a class can implement at the same time? public class MyClass: IInteferface_1, IInterface_2, ... , IInterface_N { } …

c# .net interface interface-implementation
What is the difference between "extends" and "implements" in java with respect to performance and memory,etc

What is the difference between extends and implements in java with respect to performance and memory,etc. For example take …

java inheritance derived-class interface-implementation
Two parameters causes 'Method in Type does not have an implementation' Exception?

I've got a very weird bug on our test machine. The error is: System.TypeLoadException: Method 'SetShort' in type 'DummyItem' …

c# reflection interface-implementation
how to implement a static method in a class that implements an interface?

I'm implementing a java class that implements an interface. The poi is that, a method in this class must be …

java static-methods interface-implementation
What are the API that does implement JSR-353 (JSON)

I just found out that Jackson does not implement JSR-353 and we already designed the module.. so i am in …

java json jackson interface-implementation jsr-353
in MVC4 shows and error that I have to implement some Interface but I am already done it

I am trying to create own filter attribute in order to support multilinguality. The idea is simple. URL stands for …

c# asp.net-mvc inheritance multilingual interface-implementation
Interface/Implementation in ANSI C

I'm working on a large project in C, and I want to organize it using interface (.h) and implementation (.c) …

c ansi interface-implementation