Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
513 views

What interfaces do all arrays implement in c#?

As a new .NET 3.0 programmer, I started to learn LINQ and I found something pretty basic that I haven't noticed before: The book claims every array implements IEnumerable<T> (obviously, ...
6
votes
2answers
180 views

In C#, is it possible to implement an interface member using a member with a different name, like you can do in VB.NET?

Ok, this is a question I'm asking, not as in demonstrating good coding practices (this actually could be considered a bad practice) but rather in regards to 'can' it be done at all. That said, in ...
3
votes
3answers
72 views

Multiple Implementation Attempts

I am developing a solution which will connect to a wide variety of servers to read data and perform operations. There are many variables which complicate reliable communications such as firewalls, ...
3
votes
4answers
479 views

Can a class implement the Collection object?

I'm trying to extend functionality of the VBA Collection object in a new class and make this class an inheritant of Collection, but the Implements Collection statement gives me the following error: ...
2
votes
1answer
87 views

Does DataTable implement IListSource?

The documentation (and intellisense) states very clearly that DataTable implements IListSource. But then why doesn't DataTable have a getList() method, which is (the main) part of the IListView ...
2
votes
1answer
175 views

PHP interface implementation rejects subclasses on parameters

consider this: class A{} class B extends A{} interface I{ // expects object instanceof A function doSomething(A $a); } class C implements I { // fails ???? function doSomething(B $b){} } In ...
2
votes
4answers
214 views

invoking method declaration without reflection

I have a base class (order) with a set of sub classes (productorder, specialorder, partsorder etc). Only Some of these sub classes implement a particular interface (ITrackingCustomer) which has a ...
1
vote
1answer
42 views

How can i allow the thread which is an implementation of interface to communicate with the JWindow objects?

How can i get the Network counter value to include in my Main JButton goal? I was doing something like this: Main.java: package demo; import java.awt.BorderLayout; import java.util.logging.Level; ...
1
vote
4answers
433 views

Class Implementing Two Interfaces which Define the Same Method

//inteface i11 public interface i11 { void m11(); } //interface i22 public interface i22 { void m11(); } //class ab implements interfaces i11 and i22 public ...
1
vote
2answers
414 views

Error: List<int> does not have the matching of 'System.Collections.Generic.IEnumerable<int>

How to implement interface members "f" with the list? public interface I { IEnumerable<int> f { get; set; } } public class C:I { public List<int> f { get; set; } } Error 1 ...
1
vote
3answers
871 views

C# inherited protected method implementing interface

I have this class/interface definitions in C# public class FooBase { ... protected bool Bar() { ... } ... } public interface IBar { bool Bar(); } Now I want to create a class Foo1 ...
0
votes
0answers
8 views

implementing an interface from an external SWC result in error 1144

I use Flash Builder 4.5 with Flex SDK 4.5.1. In one project I define an interface like this: package my.package { public interface ISomeStuff { function myMethod( pArg:ArgType ...
0
votes
0answers
93 views

Two parameters causes 'Method in Type does not have an implementation' Exception?

I have an solution with a number of projects. Relevant for the question is an API class library, a CustomTriggers class library and a web site. Both CustomTriggers and web site references API. ...
0
votes
5answers
68 views

Is it allowed for a class to implement an interface plus additional private method(s) in C#?

I have the following interface: interface IExcelServices { Dictionary<string, string[]> FilterFields(Dictionary<string, string[]> excelContent); Dictionary<string, ...
0
votes
1answer
138 views

LINQ to SQL object to implement an interface?

In my database, I have the following tables CustomExpressions GlobalExpressions I had corresponding POCO classes in my application public class CustomExpressions: IExpression { //blah blah ...
0
votes
6answers
466 views

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 { } Is there a limit for N? Don't worry I don't want to ...
0
votes
1answer
656 views

How to create a custom observable collection using ConcurrentDictionary, INotifyCollectionChanged, INotifyPropertyChanged

I am trying to create an ObservableConcurrentDictionary. This object will be used in a multithreaded application, and it's data is used to populate a control via the controls ItemsSource property. ...
0
votes
2answers
2k views

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 Collection<Integer> as an input. How can I do this? I thought an ArrayList was a ...