111,097
社区成员




StreamReader sr = new StreamReader(@"c:\ss.url");
string strContent = sr.ReadToEnd();
Match m = Regex.Match(strContent, @"(?<=[InternetShortcut].*?url=)[\S]*",RegexOptions.IgnoreCase|RegexOptions.Singleline);
if (m.Success)
MessageBox.Show(m.Value);
else
MessageBox.Show("not a Shortcut");