我试图在网上搜索这个,但很难描述,所以我还没有发现任何相关信息。
我已经使用VS2010很长一段时间了,一切运行良好,编辑器很快,自动完成是我的第一个朋友:)
自从我安装VS2013以来,2010年的编辑器变得迟钝,特别是在使用" Shift + Del"等快捷命令时。自动完成功能不时会停止工作,我必须重新打开Visual Studio才能让它再次运行。最奇怪的是,一旦发生这种情况,Undo和Redo就会开始随机乱码。这是我用" Shift + Del"删除一行代码后的最新结果。在不同的功能体上方30行,然后按下" Ctrl + Z"。在此之前,以下是4个几乎相同的foreach
陈述
MeshGeometry3D mesh = (child as GeometryModel3D).Geometry as MeshGeometry3D;
foreach (Point3D vertex in mesh.Positions)
msg += "Vert => " + vertex + "\n";
msg += "\n";
msg += "\n";mals)
msg += "Norm => " + vector + "\n";
msg += "\n";
msg += "\n";Coordinates)
msg += "Text => " + point + "\n";
msg += "\n";
foreach (int i in mesh.TriangleIndices)
msg += "Indi => " + i + "\n";
当我关闭并重新打开Visual Studio时,所有错误似乎都消失了,但它几乎不是解决方案。我不是很喜欢重新安装VS2010,但是如果你们认为这是我尝试的唯一方法。