Click here to Skip to main content
15,910,603 members
Home / Discussions / C#
   

C#

 
GeneralRe: Disable CD burning Pin
Dave Kreskowiak20-Jan-10 7:36
mveDave Kreskowiak20-Jan-10 7:36 
GeneralRe: Disable CD burning Pin
Member 321910420-Jan-10 15:21
Member 321910420-Jan-10 15:21 
GeneralRe: Disable CD burning Pin
Dave Kreskowiak20-Jan-10 18:33
mveDave Kreskowiak20-Jan-10 18:33 
GeneralRe: Disable CD burning Pin
Member 321910421-Jan-10 16:52
Member 321910421-Jan-10 16:52 
GeneralRe: Disable CD burning Pin
Eddy Vluggen20-Jan-10 12:07
professionalEddy Vluggen20-Jan-10 12:07 
GeneralRe: Disable CD burning Pin
Member 321910420-Jan-10 15:26
Member 321910420-Jan-10 15:26 
GeneralRe: Disable CD burning Pin
Eddy Vluggen21-Jan-10 8:57
professionalEddy Vluggen21-Jan-10 8:57 
GeneralRe: Disable CD burning Pin
Member 321910421-Jan-10 16:50
Member 321910421-Jan-10 16:50 
GeneralRe: Disable CD burning Pin
Eddy Vluggen21-Jan-10 21:57
professionalEddy Vluggen21-Jan-10 21:57 
GeneralRe: Disable CD burning Pin
harold aptroot20-Jan-10 5:42
harold aptroot20-Jan-10 5:42 
QuestionSwitching to Embedded programming? Pin
ppayal19-Jan-10 21:59
ppayal19-Jan-10 21:59 
AnswerRe: Switching to Embedded programming? Pin
Luc Pattyn20-Jan-10 1:10
sitebuilderLuc Pattyn20-Jan-10 1:10 
Questionerror Pin
djsproject19-Jan-10 20:40
djsproject19-Jan-10 20:40 
AnswerRe: error Pin
Estys19-Jan-10 20:51
Estys19-Jan-10 20:51 
AnswerRe: error Pin
Abhinav S19-Jan-10 21:52
Abhinav S19-Jan-10 21:52 
QuestionMessage Removed Pin
19-Jan-10 20:39
prithaa19-Jan-10 20:39 
GeneralRe: Update method problem Pin
Abhinav S19-Jan-10 21:56
Abhinav S19-Jan-10 21:56 
GeneralRe: Update method problem Pin
prithaa20-Jan-10 6:25
prithaa20-Jan-10 6:25 
QuestionHow to avoid repeated output statement... Pin
<<Tash18>>19-Jan-10 20:28
<<Tash18>>19-Jan-10 20:28 
AnswerRe: How to avoid repeated output statement... Pin
Calla19-Jan-10 20:38
Calla19-Jan-10 20:38 
GeneralRe: How to avoid repeated output statement... Pin
<<Tash18>>19-Jan-10 20:41
<<Tash18>>19-Jan-10 20:41 
AnswerRe: How to avoid repeated output statement... Pin
Martin#19-Jan-10 21:04
Martin#19-Jan-10 21:04 
GeneralRe: How to avoid repeated output statement... Pin
<<Tash18>>19-Jan-10 21:16
<<Tash18>>19-Jan-10 21:16 
AnswerRe: How to avoid repeated output statement... Pin
Martin#19-Jan-10 22:06
Martin#19-Jan-10 22:06 
Hello,


<<thashif>> wrote:
thanx but genericlist can be used in Dotnet framework 2.0 but im using VS2003 on framework 1.0

that's true!

<<thashif>> wrote:
can i make use of array.. but the problem is i am not very much strong in arrays.. Do please guide me.

Sure!

instead of generics, you could use the StringCollection class, which is available in .Net 1.x:
using System.Collections.Specialized;

...
StringCollection fileNames = new StringCollection();

StringCollection, does also provide a Contains and a Add method, like the generic list.

Hope it helps!

All the best,

Martin

GeneralRe: How to avoid repeated output statement... Pin
<<Tash18>>19-Jan-10 23:06
<<Tash18>>19-Jan-10 23: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.