473,654 Members | 3,040 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Q: returning wrong type from GetEnumerator?

I know this is simple problem but I am so new that there is some fundamental
disconnect in my understanding of: Enumerable, Enumerator, and Generics.

As a result I am having a problem debugging this error message
"Error 1 'SimpleSite.Ema il.Model.Hosts' does not implement interface member
'System.Collect ions.IEnumerabl e.GetEnumerator ()'.
'SimpleSite.Ema il.Model.Hosts. GetEnumerator() ' is either static, not public,
or has the wrong return type."

....in the following simple code...:

using System;
using System.Collecti ons;
using System.Collecti ons.Generic;
using System.Text;

namespace SimpleSite.Emai l.Model
{
class Hosts : IEnumerable<Dic tionary<String, Host>>
{
private Dictionary<Stri ng, Hosthosts;

Hosts()
{
hosts = new Dictionary<Stri ng, Host>();
}

public void Add(Host h)
{
if (hosts.Contains (h.getId()))
{
hosts.Remove(h. getId());
}
hosts.Add(h.get Id(), h);
}
public IEnumerator<Dic tionary<String, Host>GetEnumera tor()
{
return (IEnumerator < Dictionary<Stri ng, Host)
this.hosts.GetE numerator();
}
public Host Item(String key)
{
return hosts(key);
}
}
}

Any ideas why I am seeing this error and what I should change would be
greatly appreciated. Thanks!! - Richard

---------------
"Lisp doesn''t look any deader than usual to me."

- David Thornley, reply to a question older than most languages
Mar 1 '07 #1
3 3734
rchf <rc**@discussio ns.microsoft.co mwrote:
I know this is simple problem but I am so new that there is some fundamental
disconnect in my understanding of: Enumerable, Enumerator, and Generics.

As a result I am having a problem debugging this error message
"Error 1 'SimpleSite.Ema il.Model.Hosts' does not implement interface member
'System.Collect ions.IEnumerabl e.GetEnumerator ()'.
'SimpleSite.Ema il.Model.Hosts. GetEnumerator() ' is either static, not public,
or has the wrong return type."

...in the following simple code...:
You're implementing System.Collecti ons.Generic.IEn umerable<T>, but not
System.Collecti ons.IEnumerable .

Just add:

IEnumerator IEnumerable.Get Enumerator()
{
return GetEnumerator() ;
}

and all should be well.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Mar 1 '07 #2
Thank you Jon - that did it! Seems one must specify the position in the
class hierarchy of the methods that are satisfying Interface specifications.
That was unexpected. Thanks again!
Mar 1 '07 #3
rchf <rc**@discussio ns.microsoft.co mwrote:
Thank you Jon - that did it! Seems one must specify the position in the
class hierarchy of the methods that are satisfying Interface specifications.
That was unexpected. Thanks again!
No, it's not a case of specifying the position in the hierarchy. You
just need to implement one of the GetEnumerator methods explicitly
(i.e. including which interface you mean) because they both have the
same signature.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Mar 1 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
5080
by: John C | last post by:
I'm new to C#, so just point me at the correct reference material if this question has been answered before. When creating a new class which implements the IDictionary interface, two versions of the GetEnumerator method must be defined (one from the IDictionary interface, one from the IEnumerable interface). The first is defined as: public IDictionaryEnumerator GetEnumerator()
2
2891
by: rajivpopat | last post by:
I've been reading a discussion thread at http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_frm/thread/119f8362a9f5ff52 regarding typecasting generic collections to classical collections and vice-a-versa I faced a similar problem and solved it slightly differently... The apporach i seems to work but i am sure someone has a better apporach for solving this problem. In my case i was using nHibernate which was...
6
1979
by: Derrick | last post by:
Hello all; Since I do have working code, this is more for my curiosity only. I'm creating a "Plugin" architecture, following some of the many examples on the 'net. Basically what I have is this: - a DLL which contains the interface that every plugin must implement (IPlugin). This DLL also contains a class with the ability to search for DLLs in the calling applications working directory that contain classes implementing IPlugin (I...
2
1557
by: Sam Marrocco | last post by:
I've constructed a class that inherits the NameObjectCollectionBase class. All works well, but I'd like to shadow the GetEnumerator method so that it returns an actual value *instead of a DictionaryEntry*. I've gotten strange errors when attempting to override GetEnumerator, such as 'GetEnumerator() cannot override 'Public Overridable NotOverridable Function GetEnumerator() because it is declared NotOverridable......yes, it actually...
9
7877
by: Paul | last post by:
Hi, I feel I'm going around circles on this one and would appreciate some other points of view. From a design / encapsulation point of view, what's the best practise for returning a private List<as a property. Consider the example below, the class "ListTest" contains a private "List<>" called "strings" - it also provides a public method to add to that list,
2
4056
by: Paul | last post by:
I have two classes. One (FrontierApplication) is a definition of a record from a table. The other (FrontierApplicationCollection) is the collection of the first class. Below is how they are defined. I get an error when iterating through the collection. The error I get is "Unable to cast object of type 'ArrayListEnumeratorSimple' to type 'System.Collections.Generic.IEnumerator'" The error occurs in the collection class from the...
2
1366
by: =?Utf-8?B?VGVk?= | last post by:
I have been asked to change an existing program which Implemented a Collection Class The current class had what is below (its just a summary of the code) Public Class FieldList Implements System.Collections.IEnumerable Private thisColl As Collection
16
4262
by: colin | last post by:
Hi, is it possible to have a recursive GetEnumerator for traversing a tree structure ? public IEnumerator<DTypeGetEnumerator() { return GetEnumerator(root);
2
29998
by: Andrus | last post by:
I'm trying to compile myGeneration PropertyCollectionAll.cs file with VCS Express 2005 bot got error Error 1 The type or namespace name 'Collection' could not be found (are you missing a using directive or an assembly reference?) PropertyCollectionAll.cs 17 39 I looked to .NET 2 help and found that Collection class is included in mscorlib so it doen't need assembly reference. How to fix this error ?
0
8375
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8290
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8815
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8482
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5622
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4149
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2714
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1916
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1593
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.