AcManager.Controls.Helpers.ShellLink.ShellLink C# (CSharp) Метод

ShellLink() публичный Метод

public ShellLink ( string file ) : System
file string
Результат System
        public ShellLink(string file) {
            try {
                shellLinkW = (IShellLinkW)new CShellLink();
            } catch {
                throw new COMException("Failed to create ShellLink object.");
            }

            if (file != null)
                Load(file);
        }

Same methods

ShellLink::ShellLink ( ) : System