Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Reference object in a collection by a string instead of integer

I have a collection of objects stored in a List.

I would like to address the an object by using a string name instead of an integer.

List<Foo> fooList = new List<Foo>;
Foo item = fooList["Foo Name"]

instead of:

List<Foo> fooList = new List<Foo>;
Foo item = fooList[0]

I was thinking that I need to create a collection class that inherits from List, but from there, I'm not sure.

like image 262
ChandlerPelhams Avatar asked Nov 09 '11 21:11

ChandlerPelhams


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.


2 Answers

Dictionary<string, Foo> is the type you want.

like image 155
Joren Avatar answered Sep 20 '22 23:09

Joren


Joren's answer is the go-to, but if you need to preserve sequential order for some other logic, AND the name you want to refer to the object by can be a member of that object, than a little Linq can also do the trick:

List<Foo> fooList = new List<Foo>;
Foo item = fooList.FirstOrDefault(f=>f.Name == "Foo Name");

You could put this into an "indexer" property of a custom collection that derives from list:

public class MyList:List<Foo>
{
   public Foo this[string name]
   {
      get { return this.FirstOrDefault(f=>f.Name == "Foo Name"); }
   }
}

...which allows you to get your exact desired syntax, while maintaining sequential ordering (which is not guaranteed with a Dictionary)

like image 28
KeithS Avatar answered Sep 22 '22 23:09

KeithS