Click here to Skip to main content
15,886,772 members
Home / Discussions / C#
   

C#

 
AnswerRe: download file memory usage Pin
Phillip M. Hoff2-Apr-07 18:22
Phillip M. Hoff2-Apr-07 18:22 
QuestionHow to remove space in a String? Pin
Khoramdin2-Apr-07 16:16
Khoramdin2-Apr-07 16:16 
AnswerRe: How to remove space in a String? Pin
Christian Graus2-Apr-07 16:19
protectorChristian Graus2-Apr-07 16:19 
AnswerRe: How to remove space in a String? Pin
Muammar©2-Apr-07 20:00
Muammar©2-Apr-07 20:00 
QuestionRe: How to remove space in a String? Pin
JacquesDP2-Apr-07 21:00
JacquesDP2-Apr-07 21:00 
AnswerRe: How to remove space in a String? Pin
Muammar©2-Apr-07 21:26
Muammar©2-Apr-07 21:26 
GeneralRe: How to remove space in a String? Pin
Guffa2-Apr-07 21:38
Guffa2-Apr-07 21:38 
AnswerRe: How to remove space in a String? [modified] Pin
Muammar©2-Apr-07 21:49
Muammar©2-Apr-07 21:49 
Okay "black" spaces;P.. no seriously, you can remove tabs at least doing this:
string strTabs = "a\t\t\tb";
MessageBox.Show("Before: "+str);
MessageBox.Show("After: "+str.Replace("\t",@"<tab>"));

string strNewLines = "a\n\n\nb";
MessageBox.Show("Before: "+str);
MessageBox.Show("After: "+str.Replace("\n",@"<enter>"));




-- modified at 4:01 Tuesday 3rd April, 2007


Smile: A curve that can set a lot of things straight!
(\ /)
(O.o)
(><)

AnswerHi i ahv this code just it will remove all spaces and special chars also Pin
sooreeagt2-Apr-07 21:15
sooreeagt2-Apr-07 21:15 
GeneralRe: Hi i ahv this code just it will remove all spaces and special chars also Pin
Christian Graus2-Apr-07 21:22
protectorChristian Graus2-Apr-07 21:22 
GeneralRe: Hi i ahv this code just it will remove all spaces and special chars also Pin
Muammar©2-Apr-07 21:31
Muammar©2-Apr-07 21:31 
GeneralRe: Hi i ahv this code just it will remove all spaces and special chars also Pin
Christian Graus2-Apr-07 22:52
protectorChristian Graus2-Apr-07 22:52 
QuestionC# HELP...here...about the popup file Pin
Missy Glory2-Apr-07 15:32
Missy Glory2-Apr-07 15:32 
AnswerRe: C# HELP...here...about the popup file Pin
Christian Graus2-Apr-07 15:46
protectorChristian Graus2-Apr-07 15:46 
AnswerRe: C# HELP...here...about the popup file Pin
liewcp2-Apr-07 16:07
liewcp2-Apr-07 16:07 
AnswerRe: C# HELP...here...about the popup file Pin
Muammar©2-Apr-07 20:02
Muammar©2-Apr-07 20:02 
Questionhow to run exe file in ram (on the fly) ? Pin
hdv2122-Apr-07 15:22
hdv2122-Apr-07 15:22 
AnswerRe: how to run exe file in ram (on the fly) ? Pin
Christian Graus2-Apr-07 15:47
protectorChristian Graus2-Apr-07 15:47 
AnswerRe: how to run exe file in ram (on the fly) ? Pin
Muammar©2-Apr-07 20:05
Muammar©2-Apr-07 20:05 
QuestionHow to know a EXE file was written by .net language or not? Pin
goldli2-Apr-07 15:00
goldli2-Apr-07 15:00 
AnswerRe: How to know a EXE file was written by .net language or not? Pin
Christian Graus2-Apr-07 15:48
protectorChristian Graus2-Apr-07 15:48 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
goldli2-Apr-07 18:19
goldli2-Apr-07 18:19 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
Christian Graus2-Apr-07 22:49
protectorChristian Graus2-Apr-07 22:49 
GeneralRe: How to know a EXE file was written by .net language or not? Pin
goldli2-Apr-07 23:19
goldli2-Apr-07 23:19 
AnswerRe: How to know a EXE file was written by .net language or not? Pin
Muammar©2-Apr-07 20:08
Muammar©2-Apr-07 20:08 

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.