You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

MapEncoder.cs 352 B

1234567891011121314151617
  1. using System;
  2. namespace Preparation.Utility
  3. {
  4. public class MapEncoder
  5. {
  6. static public char Dec2Hex(int d)
  7. {
  8. return char.Parse(d.ToString("X"));
  9. }
  10. static public int Hex2Dec(char h)
  11. {
  12. string hexabet = "0123456789ABCDEF";
  13. return hexabet.IndexOf(h);
  14. }
  15. }
  16. }