F#.Net可移植子集Unicode问题

时间:2013-07-16 18:02:53

标签: unicode f# portable-class-library

好的,我在VS2012中创建了一个F#可移植库项目,并且我有一些代表Utf-32编码字符的整数,例如:0x0001D538这是一个双击A.通常将其变为Utf- 16个代理对你要用System.Char.ConvertFromUtf32(i),完成工作。但是,Microsoft已经决定不在.net可移植子集中包含此方法。 (它在交互式窗口中运行良好,必须运行完整的.net)。那么,我应该怎样做才能从这些整数中获得我最喜欢的代理对?它们需要是整数,因为我对它们进行了一些算术运算。等待下一个版本的出现是一个可行的选择。

1 个答案:

答案 0 :(得分:5)

这是从Reflector快速翻译C#。你能用这个吗?

type System.Char with
  static member ConvertFromUtf32(utf32) =
    if utf32 < 0 || utf32 > 0x10ffff || (utf32 >= 0xd800 && utf32 <= 0xdfff) then
      invalidArg "utf32" "Out of range"
    elif utf32 < 0x10000 then 
      new String(char utf32, 1)
    else
      let utf32 = utf32 - 0x10000
      new String([| char ((utf32 / 0x400) + 0xd800); char ((utf32 % 0x400) + 0xdc00) |])