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

C#

 
GeneralRe: get URL from Chrome Pin
Luc Pattyn29-Jan-11 1:10
sitebuilderLuc Pattyn29-Jan-11 1:10 
GeneralRe: get URL from Chrome Pin
moums29-Jan-11 9:21
moums29-Jan-11 9:21 
AnswerRe: get URL from Chrome Pin
Luc Pattyn29-Jan-11 9:43
sitebuilderLuc Pattyn29-Jan-11 9:43 
GeneralRe: get URL from Chrome Pin
moums30-Jan-11 9:35
moums30-Jan-11 9:35 
GeneralRe: get URL from Chrome Pin
dan!sh 29-Jan-11 9:36
professional dan!sh 29-Jan-11 9:36 
QuestionHow to create an HTML replacement string that has multiple quotes inside of it? [modified] Pin
turbosupramk328-Jan-11 7:32
turbosupramk328-Jan-11 7:32 
AnswerRe: How to create an HTML replacement string that has multiple quotes inside of it? Pin
TheGreatAndPowerfulOz28-Jan-11 8:30
TheGreatAndPowerfulOz28-Jan-11 8:30 
AnswerRe: How to create an HTML replacement string that has multiple quotes inside of it? Pin
OriginalGriff28-Jan-11 8:37
mveOriginalGriff28-Jan-11 8:37 
It is possible that I have misunderstood you, but this does seem a little simple:
If I understand you correctly, all you need to do is include the double quote characters in your string:
string s = @"1""2""3";
would create a string containing 5 characters:
'1'
'"'
'2'
'"'
'3'
So would:
string s = "1\"2\"3";
Take your pick!
If the string is quite large and unwieldy, and you want to include the newlines as well, you could make it more readable by moving the text to a file, and including it in your resources.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.

GeneralRe: How to create an HTML replacement string that has multiple quotes inside of it? Pin
turbosupramk328-Jan-11 11:13
turbosupramk328-Jan-11 11:13 
Questionhow to customize the Form class? Pin
leeoze27-Jan-11 21:07
leeoze27-Jan-11 21:07 
AnswerRe: how to customize the Form class? PinPopular
Pete O'Hanlon27-Jan-11 22:21
mvePete O'Hanlon27-Jan-11 22:21 
AnswerRe: how to customize the Form class? Pin
nlarson1128-Jan-11 8:36
nlarson1128-Jan-11 8:36 
QuestionFree SMS API Pin
Anil Kumar.Arvapalli27-Jan-11 20:27
Anil Kumar.Arvapalli27-Jan-11 20:27 
AnswerRe: Free SMS API Pin
Richard MacCutchan28-Jan-11 1:36
mveRichard MacCutchan28-Jan-11 1:36 
QuestionClearing IE browsing history Pin
rakeshs31227-Jan-11 20:04
rakeshs31227-Jan-11 20:04 
AnswerRe: Clearing IE browsing history Pin
Not Active27-Jan-11 20:17
mentorNot Active27-Jan-11 20:17 
AnswerReason for my vote of one: Pin
OriginalGriff27-Jan-11 20:24
mveOriginalGriff27-Jan-11 20:24 
QuestionWorking with native dll (dynamic string array and double indirection) Pin
csrss27-Jan-11 13:15
csrss27-Jan-11 13:15 
AnswerRe: Working with native dll (dynamic string array and double indirection) Pin
csrss27-Jan-11 14:39
csrss27-Jan-11 14:39 
QuestionBreaking Up Classes Pin
Richard Andrew x6427-Jan-11 11:40
professionalRichard Andrew x6427-Jan-11 11:40 
AnswerRe: Breaking Up Classes Pin
TheGreatAndPowerfulOz27-Jan-11 11:49
TheGreatAndPowerfulOz27-Jan-11 11:49 
GeneralRe: Breaking Up Classes Pin
Richard Andrew x6427-Jan-11 11:53
professionalRichard Andrew x6427-Jan-11 11:53 
GeneralRe: Breaking Up Classes Pin
TheGreatAndPowerfulOz27-Jan-11 12:36
TheGreatAndPowerfulOz27-Jan-11 12:36 
AnswerRe: Breaking Up Classes Pin
RobCroll27-Jan-11 11:55
RobCroll27-Jan-11 11:55 
AnswerRe: Breaking Up Classes Pin
dan!sh 27-Jan-11 12:03
professional dan!sh 27-Jan-11 12:03 

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.