标签:需要 项目启动 项目文件 number 引用 字符串数组 有一个 管理 管理器
private void textBox4_KeyPress(object sender, KeyPressEventArgs e) { if(e.KeyChar != 8 && !Char.IsDigit(e.KeyChar)) { e.Handled = true; } }
string str =" E:\test\Default.aspx"; string filename = System.IO.Path.GetFileName(str);//文件名 “Default.aspx” string extension = System.IO.Path.GetExtension(str);//扩展名 “.aspx” string fileNameWithoutExtension = System.IO.Path.GetFileNameWithoutExtension(str);// 没有扩展名的文件名 “Default”
Form2 form = new From2(); form.Show();
Editfiles editfiles = new EditFiles(); editfiles.test();
string[] name = new string[10]
string[] name = null; string[] Filename = new string[80]; name = Filename;
标签:需要 项目启动 项目文件 number 引用 字符串数组 有一个 管理 管理器
原文地址:https://www.cnblogs.com/masonmei/p/11459754.html