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

C#

 
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 
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 
What you have is not an ASCII coded character, and it is not a "comma;" it is Unicode, specifically the single low-9 quotation mark: [^].

So, if you must work with Unicode character sets, you should plan to forget about using plain-old ASCII. There are over 100k Unicode characters, and only 128 in ASCII. While you can access an ASCII "mapping" via the Encoding Class:
C#
byte[] unicode = Encoding.Unicode.GetBytes("õí‚è‹");

string Ascii = Encoding.ASCII.GetString(unicode);
The result of this would be: "?\0?\0 ?\09" : the "?" indicates result is unknown for a given character.
«I want to stay as close to the edge as I can without going over. Out on the edge you see all kinds of things you can't see from the center» Kurt Vonnegut.

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 
AnswerRe: sorting information from several threads - is my algorithm correct? Pin
Matt T Heffron17-Nov-15 13:38
professionalMatt T Heffron17-Nov-15 13:38 
GeneralRe: sorting information from several threads - is my algorithm correct? Pin
John Torjo17-Nov-15 13:42
professionalJohn Torjo17-Nov-15 13:42 
QuestionRe: sorting information from several threads - is my algorithm correct? Pin
Matt T Heffron17-Nov-15 14:00
professionalMatt T Heffron17-Nov-15 14:00 
AnswerRe: sorting information from several threads - is my algorithm correct? Pin
John Torjo17-Nov-15 14:03
professionalJohn Torjo17-Nov-15 14:03 
AnswerRe: sorting information from several threads - is my algorithm correct? Pin
BillWoodruff17-Nov-15 14:49
professionalBillWoodruff17-Nov-15 14:49 
GeneralRe: sorting information from several threads - is my algorithm correct? Pin
John Torjo17-Nov-15 14:59
professionalJohn Torjo17-Nov-15 14:59 

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.