GetPath() public méthode

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