I am using the Cosmos template to build a c# os. I need to write my own method that will convert a int value to a 2 byte use hex value. I can't use any prebuilt functions (like ToString("X") or String.Format). I tried writting a method but it failed. Any code, ideas, suggestions, or tutorials?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||||
|
|
EDIT: Okay, now we know you're working in Cosmos, I have two suggestions. First: build it yourself:
Note the parameter type of Second: use a lookup table:
You could combine the two approaches, of course, using the first (relatively slow) approach to generate the lookup table. |
|||||||||||
|