Beispiel #1
0
        private static IStartInfo CreateStartInfoFromString(string filePath)
        {
            var shortcut  = FileSystemRetrieverBase.GetShortcutInfo(filePath);
            var startInfo = new StartInfo
            {
                Arguments = shortcut.Arguments,
                FilePath  = shortcut.TargetPath
            };

            return(startInfo);
        }
Beispiel #2
0
 protected override IStartInfo /*RetrieverBase<T1>.*/ CreateStartInfoFrom(string filePath)
 {
     return(FileSystemRetrieverBase.CreateStartInfoFromString(filePath));
 }