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

C#

 
AnswerRe: Glade , monodevelop or sharpdevelop Pin
Simon P Stevens23-Jul-08 1:57
Simon P Stevens23-Jul-08 1:57 
GeneralRe: Glade , monodevelop or sharpdevelop Pin
adnane24-Jul-08 9:37
adnane24-Jul-08 9:37 
GeneralRe: Glade , monodevelop or sharpdevelop Pin
Simon P Stevens24-Jul-08 10:34
Simon P Stevens24-Jul-08 10:34 
QuestionMAGIC: modifying a class memeber affects another member, HOW? Pin
Muhammad Gouda22-Jul-08 23:43
Muhammad Gouda22-Jul-08 23:43 
AnswerRe: MAGIC: modifying a class memeber affects another member, HOW? Pin
leppie22-Jul-08 23:50
leppie22-Jul-08 23:50 
AnswerRe: MAGIC: modifying a class memeber affects another member, HOW? Pin
DaveyM6922-Jul-08 23:53
professionalDaveyM6922-Jul-08 23:53 
GeneralRe: MAGIC: modifying a class memeber affects another member, HOW? Pin
Muhammad Gouda22-Jul-08 23:56
Muhammad Gouda22-Jul-08 23:56 
AnswerRe: MAGIC: modifying a class memeber affects another member, HOW? Pin
PIEBALDconsult23-Jul-08 4:43
mvePIEBALDconsult23-Jul-08 4:43 
Yeah, what they said. Personally, I'd do someting more like this:

this.filesList = new string [ filesList.Length ] ;
this.pathsList = new string [ filesList.Length ] ;
 
System.IO.FileInfo temp ;
  
for(int i=0; i<noOfFiles; i++)
{
    temp = new System.IO.FileInfo ( filesList[i] ) ;
 
    this.pathsList[i] = temp.FullName ;
    this.filesList[i] = temp.Name ;
}


And more likely I'd use List<string>s rather than arrays.
I also pass file specifications through System.Environment.ExpandEnvironmentVariables before using them, but that's just me.
QuestionHow can i interact my window service with desktop application. Pin
wasimsharp22-Jul-08 23:25
wasimsharp22-Jul-08 23:25 
AnswerRe: How can i interact my window service with desktop application. Pin
Giorgi Dalakishvili22-Jul-08 23:43
mentorGiorgi Dalakishvili22-Jul-08 23:43 
AnswerRe: How can i interact my window service with desktop application. Pin
Mbah Dhaim22-Jul-08 23:51
Mbah Dhaim22-Jul-08 23:51 
AnswerRe: How can i interact my window service with desktop application. Pin
Ashfield23-Jul-08 1:25
Ashfield23-Jul-08 1:25 
QuestionWeb service to call business logic class Pin
Gktony22-Jul-08 23:20
Gktony22-Jul-08 23:20 
AnswerRe: Web service to call business logic class Pin
Harvey Saayman23-Jul-08 2:36
Harvey Saayman23-Jul-08 2:36 
GeneralRe: Web service to call business logic class Pin
Gktony23-Jul-08 2:49
Gktony23-Jul-08 2:49 
GeneralRe: Web service to call business logic class Pin
DaveyM6923-Jul-08 2:57
professionalDaveyM6923-Jul-08 2:57 
GeneralRe: Web service to call business logic class Pin
Harvey Saayman23-Jul-08 3:21
Harvey Saayman23-Jul-08 3:21 
AnswerRe: Web service to call business logic class Pin
Gktony23-Jul-08 5:21
Gktony23-Jul-08 5:21 
GeneralRe: Web service to call business logic class Pin
Pete O'Hanlon23-Jul-08 8:30
mvePete O'Hanlon23-Jul-08 8:30 
GeneralRe: Web service to call business logic class Pin
Gktony23-Jul-08 9:08
Gktony23-Jul-08 9:08 
QuestionBrowser Close Pin
Agweet22-Jul-08 22:46
Agweet22-Jul-08 22:46 
AnswerRe: Browser Close Pin
Paw Jershauge22-Jul-08 22:50
Paw Jershauge22-Jul-08 22:50 
GeneralRe: Browser Close Pin
Agweet22-Jul-08 22:55
Agweet22-Jul-08 22:55 
GeneralRe: Browser Close Pin
Agweet22-Jul-08 22:55
Agweet22-Jul-08 22:55 
AnswerRe: Browser Close Pin
franz.pilgerstorfer22-Jul-08 22:56
franz.pilgerstorfer22-Jul-08 22:56 

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.