Click here to Skip to main content
15,896,207 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# logout ploblem Pin
T.EDY20-Jul-07 16:08
T.EDY20-Jul-07 16:08 
QuestionHelp with .chm Pin
RussBus20-Jul-07 9:39
RussBus20-Jul-07 9:39 
AnswerRe: Help with .chm Pin
leckey20-Jul-07 10:11
leckey20-Jul-07 10:11 
AnswerRe: Help with .chm Pin
ekynox20-Jul-07 14:21
ekynox20-Jul-07 14:21 
Questionc# literal conversion Pin
Chris Rickard20-Jul-07 9:33
Chris Rickard20-Jul-07 9:33 
AnswerRe: c# literal conversion Pin
Luc Pattyn20-Jul-07 17:45
sitebuilderLuc Pattyn20-Jul-07 17:45 
GeneralRe: c# literal conversion Pin
Chris Rickard20-Jul-07 18:07
Chris Rickard20-Jul-07 18:07 
GeneralRe: c# literal conversion Pin
Luc Pattyn20-Jul-07 18:21
sitebuilderLuc Pattyn20-Jul-07 18:21 
Hi,

if your only concern is the one backslash/two backslashes issue, you can convert back and
forth with a simple method. I dont think it is provided by .NET, so you would have to
write it yourself (I'll use curly braces to indicate a single char):

say input is ab\tc\nd then output would have to be ab{TAB}c{NEWLINE}d
you can do sequential replacement of \t by {TAB}, then \n by {NEWLINE} etc
using String.Replace
the order is irrelevant, since old and new strings do not conflict with each other.

similar method is required for the other direction.


if you also want to replace the \x#### and \u#### character codes by their actual char,
things become more complicated. Do you ?

Smile | :)


GeneralRe: c# literal conversion Pin
Chris Rickard20-Jul-07 18:32
Chris Rickard20-Jul-07 18:32 
QuestionRetrieve build-configuration in VS2003 Pin
AlexZieg7120-Jul-07 9:23
AlexZieg7120-Jul-07 9:23 
AnswerRe: Retrieve build-configuration in VS2003 Pin
Dave Kreskowiak20-Jul-07 9:55
mveDave Kreskowiak20-Jul-07 9:55 
QuestionMethods with generic value type parameters in C# [modified] Pin
gshen20-Jul-07 8:18
gshen20-Jul-07 8:18 
AnswerRe: Methods with generic value type parameters in C# Pin
Kevin McFarlane20-Jul-07 8:38
Kevin McFarlane20-Jul-07 8:38 
GeneralRe: Methods with generic value type parameters in C# Pin
gshen20-Jul-07 8:47
gshen20-Jul-07 8:47 
GeneralRe: Methods with generic value type parameters in C# Pin
Dave Kreskowiak20-Jul-07 9:01
mveDave Kreskowiak20-Jul-07 9:01 
GeneralRe: Methods with generic value type parameters in C# Pin
Kevin McFarlane20-Jul-07 9:02
Kevin McFarlane20-Jul-07 9:02 
GeneralRe: Methods with generic value type parameters in C# Pin
gshen20-Jul-07 9:10
gshen20-Jul-07 9:10 
GeneralRe: Methods with generic value type parameters in C# Pin
Dave Kreskowiak20-Jul-07 9:51
mveDave Kreskowiak20-Jul-07 9:51 
GeneralRe: Methods with generic value type parameters in C# Pin
Larantz21-Jul-07 9:51
Larantz21-Jul-07 9:51 
GeneralRe: Methods with generic value type parameters in C# Pin
Dave Kreskowiak22-Jul-07 4:21
mveDave Kreskowiak22-Jul-07 4:21 
QuestionDetecting when multiple BackgroundWorkers are finished Pin
dilucidate20-Jul-07 8:05
dilucidate20-Jul-07 8:05 
AnswerRe: Detecting when multiple BackgroundWorkers are finished Pin
led mike20-Jul-07 8:23
led mike20-Jul-07 8:23 
GeneralRe: Detecting when multiple BackgroundWorkers are finished Pin
dilucidate20-Jul-07 8:48
dilucidate20-Jul-07 8:48 
GeneralRe: Detecting when multiple BackgroundWorkers are finished Pin
led mike23-Jul-07 5:02
led mike23-Jul-07 5:02 
QuestionFocusable Panel Pin
Sukhjinder_K20-Jul-07 7:14
Sukhjinder_K20-Jul-07 7:14 

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.