AcManager.Controls.Helpers.ShellLink.Load C# (CSharp) 메소드

Load() 공개 메소드

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