public static bool SetIcon(this ExternalToolConfiguration This, string Source, string Destination) { var Args = new SetFileIconParameters() { Source_File = Source, Dest_File = Destination }; return(This.SetIcon(Args)); }
public static bool SetIcon(this ExternalToolConfiguration This, SetFileIconParameters Args) { return(This.Run(Args)); }