我有如下:刪除文件://前綴C#
string file = string.Concat(
System.IO.Path.GetDirectoryName(
System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase
),
"bla.xml");
現在的文件是:
file:\C:\test\Debugbla.xml
我如何刪除 「文件:\」 前綴?
感謝
'.Replace(「file:\」,「」)' – sed