我在数据集和XML代码中感到困惑,所以我回溯到结构。
public struct UserID_Structure
{
long ID = 0;
char[] Login = new char[30];
char[] eMail = new char[100];
bool eMailVerified = false;
char[] Authority = new char[10];
DateTime DateRegistered = new DateTime();
DateTime DateRecent = new DateTime();
int LoginCount = 0;
char[] ActivityFile = new char[20];
}
我只会使用列表而不是链接。 但是对于地址和个人信息的附加结构,我将有很多char []或字符串。计数是否会超过32k或64k或40亿,它们是否相同?
我记得曾经有一段时间MS更新到64位,但所有内部计数器都保持在32位。