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.
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 ...
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.
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.
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.
Dictionary<string, Foo>
is the type you want.
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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With