我需要把字典复制成正文。
例如:
Dictionary<int,int> flags = new Dictionary<int,int>();
flags[1] = 2;
flags[2] = 3;
flags[0] = 9001;
Dictionary<int,int> flagsn = flags.MemberwiseClone();
不幸的是,这一错误又回来:“error CS1540: Cannot access Protect member object. MemberswiseClone () through a lifier of category
System. 收集。 通用语。 限定词必须是“点火或从中衍生出来的”类型。
不完全确定这意味着什么...... 是否有另一种方式来复制上述法规文本?