2

我在 Raspberry Pi(运行 Raspbmc)上使用 Mono。大多数事情(令人惊讶!)都可以正常工作,但是有一段代码表现得很奇怪。

使用csharpC#“shell”,我得到了这个(编译后的结果相同):

csharp> DateTime.Now.ToString();
"00/735023/0001 23:05:56"

csharp> DateTime.Now.ToString("dd"); //get day numeral
"735023"

csharp> DateTime.Now.ToString("MMMM"); //get month name
System.ArgumentOutOfRangeException: Argument is out of range.
  at System.Globalization.DateTimeFormatInfo.GetMonthName (Int32 month) 
  [...]

...但是,访问单独的属性有效:

csharp> DateTime.Now.Day.ToString();
"4"

csharp> DateTime.Now.Month.ToString();
"6"

csharp> DateTime.Now.Year.ToString();
"2013"

知道发生了什么,或者至少我应该在哪里提交错误?

FWIW:这就是我正在运行的

pi@raspbmc:~$ mono -V
Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-5)
Copyright (C) 2002-2011 Novell, Inc, Xamarin, Inc and Contributors. www.mono-project.com
        TLS:           __thread
        SIGSEGV:       normal
        Notifications: epoll
        Architecture:  armel,vfp
        Disabled:      none
        Misc:          softdebug
        LLVM:          supported, not enabled.
        GC:            Included Boehm (with typed GC and Parallel Mark)
4

1 回答 1

2

报告了相关的错误:https ://bugzilla.xamarin.com/show_bug.cgi?id=7938 。原因:使用 hardfp 代替 softfp 浮点 ABI,这与 Mono 2.10 不兼容。有一些补丁可以支持 Mono 中的 hardfp,但还没有主线。

于 2013-06-04T20:29:07.967 回答