示例#1
0
        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));
        }
示例#2
0
 public static bool SetIcon(this ExternalToolConfiguration This, SetFileIconParameters Args)
 {
     return(This.Run(Args));
 }