Click here to Skip to main content
15,881,938 members
Home / Discussions / C#
   

C#

 
GeneralRe: can anyone suggest best books or links for C# interview Pin
Rob Philpott23-Nov-15 23:54
Rob Philpott23-Nov-15 23:54 
GeneralRe: can anyone suggest best books or links for C# interview Pin
Pete O'Hanlon24-Nov-15 0:05
mvePete O'Hanlon24-Nov-15 0:05 
AnswerRe: can anyone suggest best books or links for C# interview Pin
Gerry Schmitz23-Nov-15 7:01
mveGerry Schmitz23-Nov-15 7:01 
QuestionHow to set TextBox to only accept numbers? Pin
naouf1021-Nov-15 7:34
naouf1021-Nov-15 7:34 
AnswerRe: How to set TextBox to only accept numbers? Pin
Gerry Schmitz21-Nov-15 11:38
mveGerry Schmitz21-Nov-15 11:38 
AnswerRe: How to set TextBox to only accept numbers? Pin
Gilbert Consellado21-Nov-15 16:25
professionalGilbert Consellado21-Nov-15 16:25 
AnswerRe: How to set TextBox to only accept numbers? Pin
BillWoodruff21-Nov-15 18:43
professionalBillWoodruff21-Nov-15 18:43 
QuestionHow to replace text in this situation? Pin
turbosupramk320-Nov-15 7:24
turbosupramk320-Nov-15 7:24 
Using the code below, I am trying to find the text

XML
<add key="GetListDefaultResultSize" value="6500" />


but when I view what my program is seeing, it is actually seeing

XML
<add key=\"GetListDefaultResultSize\" value=\"6500\" />


How do I adjust for the escape characters that are added before the quotes when my code does a File.ReadAllText?


string allFileText = File.ReadAllText(networkFilePath);
                        if (allFileText.Contains(replacementLine))
                        {
                            lvwAppendFiles.Items.Add(networkFilePath + " contains " + replacementLine);
                        }
                        else
                        {
                            lvwAppendFiles.Items.Add(networkFilePath + " does NOT contain " + replacementLine);
                        }

AnswerRe: How to replace text in this situation? Pin
Gerry Schmitz20-Nov-15 8:07
mveGerry Schmitz20-Nov-15 8:07 
AnswerRe: How to replace text in this situation? Pin
Matt T Heffron20-Nov-15 8:47
professionalMatt T Heffron20-Nov-15 8:47 
QuestionGet row from AngleSharp.Dom.Html.HtmlSpanElement Pin
Member 1215521920-Nov-15 1:12
Member 1215521920-Nov-15 1:12 
AnswerRe: Get row from AngleSharp.Dom.Html.HtmlSpanElement Pin
Gerry Schmitz20-Nov-15 5:09
mveGerry Schmitz20-Nov-15 5:09 
QuestionGetting ASCII value for Characters? Pin
murali_utr19-Nov-15 22:15
murali_utr19-Nov-15 22:15 
AnswerRe: Getting ASCII value for Characters? Pin
BillWoodruff19-Nov-15 22:49
professionalBillWoodruff19-Nov-15 22:49 
GeneralRe: Getting ASCII value for Characters? Pin
murali_utr20-Nov-15 1:33
murali_utr20-Nov-15 1:33 
GeneralRe: Getting ASCII value for Characters? Pin
Member 1215521920-Nov-15 1:46
Member 1215521920-Nov-15 1:46 
GeneralRe: Getting ASCII value for Characters? Pin
murali_utr20-Nov-15 2:38
murali_utr20-Nov-15 2:38 
GeneralRe: Getting ASCII value for Characters? Pin
Richard MacCutchan20-Nov-15 3:07
mveRichard MacCutchan20-Nov-15 3:07 
GeneralRe: Getting ASCII value for Characters? Pin
OriginalGriff20-Nov-15 2:49
mveOriginalGriff20-Nov-15 2:49 
AnswerRe: Getting ASCII value for Characters? Pin
Richard MacCutchan19-Nov-15 23:20
mveRichard MacCutchan19-Nov-15 23:20 
QuestionLeap Motion Integration problem Pin
Alpa2419-Nov-15 14:44
Alpa2419-Nov-15 14:44 
AnswerRe: Leap Motion Integration problem Pin
OriginalGriff19-Nov-15 21:31
mveOriginalGriff19-Nov-15 21:31 
QuestionWriting HtmlHelper to Render all action methods Pin
roxcon18-Nov-15 17:53
roxcon18-Nov-15 17:53 
AnswerRe: Writing HtmlHelper to Render all action methods Pin
Dave Kreskowiak19-Nov-15 2:28
mveDave Kreskowiak19-Nov-15 2:28 
Questionsorting information from several threads - is my algorithm correct? Pin
John Torjo17-Nov-15 12:48
professionalJohn Torjo17-Nov-15 12:48 

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.