AcManager.Controls.Helpers.ShellLink.Load C# (CSharp) Method

Load() public method

public Load ( string file ) : void
file string
return void
        public void Load(string file) {
            if (!File.Exists(file))
                throw new FileNotFoundException("File is not found.", file);
            else
                PersistFile.Load(file, STGM_READ);
        }