在 IronPython 中,我可以这样做:
Console.WriteLine(int.MaxValue)
其中int不是变量,而是 System.Int32。我回来了:
Max of int: 2137483647
然而,如果我为double (System.Double) 尝试类似的东西,我会得到:
NameError: name 'double' is not defined.
char(System.Char)的相似之处。怎么来的?
在 IronPython 中,我可以这样做:
Console.WriteLine(int.MaxValue)
其中int不是变量,而是 System.Int32。我回来了:
Max of int: 2137483647
然而,如果我为double (System.Double) 尝试类似的东西,我会得到:
NameError: name 'double' is not defined.
char(System.Char)的相似之处。怎么来的?