What is the difference between uint and System.UInt32?
有区别,还是只是别名?
Yes, they are aliases. Here's the full list.
他们是别名没有区别。
它们是别名,但是:
enum A : uint
{
// This code compiles
}
enum A : UInt32
{
// Compile error
}
链接地址: http://www.djcxy.com/p/21054.html