GetPath() public method

public GetPath ( ) : string
return string
示例#1
0
 public static string getLinkLocation(string path)
 {
     using (ShellLink link = new ShellLink())
     {
         link.Load(path);
         return(link.GetPath());
     }
 }
示例#2
0
		public static string getLinkLocation(string path)
		{
			using (ShellLink link = new ShellLink())
			{
				link.Load(path);
				return link.GetPath();
			}
		}