Click here to Skip to main content
15,887,683 members
Home / Discussions / C#
   

C#

 
QuestionNHibernate Pin
Puneet Bhatnagar1-Aug-08 23:18
Puneet Bhatnagar1-Aug-08 23:18 
AnswerRe: NHibernate Pin
Paul Conrad2-Aug-08 18:56
professionalPaul Conrad2-Aug-08 18:56 
QuestionCollections and sorting using an interface Pin
DaveyM691-Aug-08 21:55
professionalDaveyM691-Aug-08 21:55 
AnswerRe: Collections and sorting using an interface Pin
User 66581-Aug-08 22:56
User 66581-Aug-08 22:56 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 2:29
professionalDaveyM692-Aug-08 2:29 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 4:11
professionalDaveyM692-Aug-08 4:11 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 4:48
professionalDaveyM692-Aug-08 4:48 
GeneralRe: Collections and sorting using an interface [modified] Pin
User 66582-Aug-08 5:06
User 66582-Aug-08 5:06 
/edit: my initial advice didn't work.

Looks like you really have to convert the entire collection. However, you can save the static method by using an anonymous method:

items.AddRange(collection.ConvertAll(new Converter<SparePart,IStockItem>(delegate(SparePart value) { return (IStockItem)value; })));


In 3.5 and the System.Linq namespace, you can also use this:

items.AddRange(collection.Cast<IStockItem>());


regards

modified on Saturday, August 2, 2008 11:35 AM


modified 12-Sep-18 21:01pm.

GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 8:47
professionalDaveyM692-Aug-08 8:47 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 10:22
professionalDaveyM692-Aug-08 10:22 
Questionmeta file using C# Pin
algates00271-Aug-08 18:56
algates00271-Aug-08 18:56 
AnswerRe: meta file using C# Pin
Thomas Stockwell2-Aug-08 7:31
professionalThomas Stockwell2-Aug-08 7:31 
QuestionHow to find the Content datatype in a String Pin
K V Sekhar1-Aug-08 18:47
K V Sekhar1-Aug-08 18:47 
AnswerRe: How to find the Content datatype in a String Pin
Rajesh R Subramanian1-Aug-08 20:59
professionalRajesh R Subramanian1-Aug-08 20:59 
AnswerRe: How to find the Content datatype in a String Pin
DaveyM691-Aug-08 21:11
professionalDaveyM691-Aug-08 21:11 
AnswerRe: How to find the Content datatype in a String Pin
Anurag Gandhi1-Aug-08 21:51
professionalAnurag Gandhi1-Aug-08 21:51 
GeneralRe: How to find the Content datatype in a String Pin
K V Sekhar1-Aug-08 23:06
K V Sekhar1-Aug-08 23:06 
GeneralRe: How to find the Content datatype in a String Pin
Guffa1-Aug-08 23:35
Guffa1-Aug-08 23:35 
QuestionThe reason behind the differences of this.Font = fontdialog1.Font and btnTest.Font Pin
Lim Yuxuan1-Aug-08 18:37
Lim Yuxuan1-Aug-08 18:37 
AnswerRe: The reason behind the differences of this.Font = fontdialog1.Font and btnTest.Font Pin
Gideon Engelberth2-Aug-08 2:12
Gideon Engelberth2-Aug-08 2:12 
GeneralRe: The reason behind the differences of this.Font = fontdialog1.Font and btnTest.Font Pin
Lim Yuxuan2-Aug-08 4:56
Lim Yuxuan2-Aug-08 4:56 
QuestionAdd rular in toolbar Pin
amitshan1-Aug-08 18:13
amitshan1-Aug-08 18:13 
AnswerRe: Add rular in toolbar Pin
Krazy Programmer1-Aug-08 22:13
Krazy Programmer1-Aug-08 22:13 
AnswerRe: Add rular in toolbar Pin
Paul Conrad2-Aug-08 10:29
professionalPaul Conrad2-Aug-08 10:29 
QuestionRegex Match counting problem Pin
Mohammad A Gdeisat1-Aug-08 17:06
Mohammad A Gdeisat1-Aug-08 17:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.