C#小记
2021-02-04 18:17
标签:需要 项目启动 项目文件 number 引用 字符串数组 有一个 管理 管理器 C#小记 标签:需要 项目启动 项目文件 number 引用 字符串数组 有一个 管理 管理器 原文地址:https://www.cnblogs.com/masonmei/p/11459754.htmlprivate 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;
上一篇:C#版简易RSS阅读器