我在 Raspberry Pi(运行 Raspbmc)上使用 Mono。大多数事情(令人惊讶!)都可以正常工作,但是有一段代码表现得很奇怪。
使用csharp
C#“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)