C#命名规范问题
C#创建windows应用程序时,自动生成的代码中,混杂了的中文变量名,比如:
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.图像ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.文字ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.显示图像ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.旋转图像ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加文字ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除文字ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();