How to check a number is hexadecimal in c#
-
hey tell it in Plain english. I could not understand.
Regards, Satips.:rose:
[Translating sonia gupta -- with censorship]
satips ji...Kal christian graus ko to aap bata rahay thay ki yeh language hindi hai.
Mr. Satips... Yesterday you were telling to Christian Graus that this language is Hindi.
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
satips ji...Kal christian graus ko to aap bata rahay thay ki yeh language hindi hai.
If he/she is not interested in Reserach ask him to go home. Don't allow him to code. Not knowing this simple things how he could be able to develop an Application.
Regards, Satips.:rose:
-
You may need to use the NumberStyles enumeration. Here is a tutorial: http://support.microsoft.com/kb/835454[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
If he/she is not interested in Reserach ask him to go home. Don't allow him to code. Not knowing this simple things how he could be able to develop an Application.
Regards, Satips.:rose:
There are a lot of such guys like these lazy jerks who depend on others to do the code and they rest back in the restroom. :-D
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
You may need to use the NumberStyles enumeration. Here is a tutorial: http://support.microsoft.com/kb/835454[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
Don't spoon feed him/her vasudevan.
Regards, Satips.:rose:
-
There are a lot of such guys like these lazy jerks who depend on others to do the code and they rest back in the restroom. :-D
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
Exactly. any how the companys are providing lot of resources to get their work done. how they got the job and how they will shine in their life. Quite Amazing .
Regards, Satips.:rose:
-
Don't spoon feed him/her vasudevan.
Regards, Satips.:rose:
:)
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Exactly. any how the companys are providing lot of resources to get their work done. how they got the job and how they will shine in their life. Quite Amazing .
Regards, Satips.:rose:
Satips wrote:
Exactly. any how the companys are providing lot of resources to get their work done.
They account purchasing an elephant to gift to thier Managing Director on his birthday to tally the bills. :)
Satips wrote:
how they got the job
The crooked referral systems, large scale walkin and job mela.
Satips wrote:
how they will shine in their life.
Never ever, at least with such current attitude. They are in
sunset phase
.Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Either you've worded this question in a slightly misleading way, or you're not up on your number systems. If you're really asking us how to tell if a number is hexadecimal, that's kind of a moot point. All numbers can be represented as a hexidecimal value. It's not a way of storing or encoding a number persay (with exceptions to the more complex storage systems such as the IEEE floating point,) so much a means of viewing it. If you want to express a number as a hex value, look into .net format strings. If you're asking how to check a string to see if it represents a hexidecimal value, then I suggest looking into regular expressions. ^0x[\da-fA-F]{1,}$ should suffice as an expression to check against. Though, I'll often append a \s{0,} to either the front or back, to add forgiveness to user input. -Roo