Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
Questionclient server app with push agent technology Pin
Tanmay Broachwala17-Sep-09 20:41
Tanmay Broachwala17-Sep-09 20:41 
QuestionWebDAV Error Pin
satsumatable17-Sep-09 20:08
satsumatable17-Sep-09 20:08 
AnswerRe: WebDAV Error Pin
Henry Minute18-Sep-09 3:07
Henry Minute18-Sep-09 3:07 
AnswerRe: WebDAV Error Pin
Atul Kharecha18-Sep-09 3:38
Atul Kharecha18-Sep-09 3:38 
QuestionWhat is the advantage of using IList over List in C# ? Pin
md_azy17-Sep-09 19:55
md_azy17-Sep-09 19:55 
AnswerRe: What is the advantage of using IList over List in C# ? Pin
0x3c017-Sep-09 20:08
0x3c017-Sep-09 20:08 
AnswerRe: What is the advantage of using IList over List in C# ? Pin
DaveyM6917-Sep-09 23:05
professionalDaveyM6917-Sep-09 23:05 
AnswerRe: What is the advantage of using IList over List in C# ? Pin
Mirko198018-Sep-09 0:15
Mirko198018-Sep-09 0:15 
IList is an interface from which all lists derive from. So, while List is an IList, the opposite is not true.

If you need a normal list, use the List class, if you need to build your own list with custom behavior (such as read only, for example), derive from IList.
If you want your method to accept as parameter different type of list from the standard one, use IList as parameter type.
If you want to hide the specific list type your method is returning, use IList as return type.
AnswerRe: What is the advantage of using IList over List in C# ? Pin
PIEBALDconsult18-Sep-09 18:54
mvePIEBALDconsult18-Sep-09 18:54 
QuestionHow to change icon of exe file through code. Pin
R a j en17-Sep-09 19:33
R a j en17-Sep-09 19:33 
AnswerRe: How to change icon of exe file through code. Pin
Christian Graus17-Sep-09 19:37
protectorChristian Graus17-Sep-09 19:37 
GeneralRe: How to change icon of exe file through code. Pin
R a j en17-Sep-09 20:07
R a j en17-Sep-09 20:07 
GeneralRe: How to change icon of exe file through code. Pin
Christian Graus17-Sep-09 21:15
protectorChristian Graus17-Sep-09 21:15 
GeneralRe: How to change icon of exe file through code. Pin
Vikram A Punathambekar17-Sep-09 22:02
Vikram A Punathambekar17-Sep-09 22:02 
GeneralRe: How to change icon of exe file through code. Pin
Christian Graus17-Sep-09 22:40
protectorChristian Graus17-Sep-09 22:40 
GeneralRe: How to change icon of exe file through code. Pin
R a j en18-Sep-09 0:32
R a j en18-Sep-09 0:32 
Questionproblem in adding new property in DataGridViewColumn Pin
monuSaini17-Sep-09 19:28
monuSaini17-Sep-09 19:28 
AnswerRe: problem in adding new property in DataGridViewColumn Pin
Henry Minute18-Sep-09 3:16
Henry Minute18-Sep-09 3:16 
GeneralRe: problem in adding new property in DataGridViewColumn Pin
monuSaini18-Sep-09 3:26
monuSaini18-Sep-09 3:26 
GeneralRe: problem in adding new property in DataGridViewColumn Pin
Henry Minute19-Sep-09 2:23
Henry Minute19-Sep-09 2:23 
GeneralRe: problem in adding new property in DataGridViewColumn Pin
monuSaini19-Sep-09 6:41
monuSaini19-Sep-09 6:41 
GeneralRe: problem in adding new property in DataGridViewColumn Pin
Henry Minute19-Sep-09 7:08
Henry Minute19-Sep-09 7:08 
Questionlock block with parameter Pin
Atul Kharecha17-Sep-09 19:16
Atul Kharecha17-Sep-09 19:16 
AnswerRe: lock block with parameter Pin
PIEBALDconsult17-Sep-09 19:31
mvePIEBALDconsult17-Sep-09 19:31 
GeneralRe: lock block with parameter Pin
Atul Kharecha17-Sep-09 19:41
Atul Kharecha17-Sep-09 19:41 

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.