For different split of string:
http://dotnetperls.com/string-split
2.C# MessageBox.Show Examples in Windows Forms
http://dotnetperls.com/messagebox-show
3.For List, some usefule code
List
Window fileOpen = windows.Where(p => p.Title == "Open").First();
4. http://csharp-tricks.blogspot.com/
5.ProcessStart with StartInformation:
string fileToExecute =@"C:\\Programme\\folder\\bin\\win32s\\appl.exe";
string expStartArgs = string.Format(" -p \"C:/folder/product/f1\" applconf \"C:/folder/project\" parameter");
ProcessStartInfo processStartInfo = new ProcessStartInfo(fileToExecute, expStartArgs);
mainApp = Application.Launch(processStartInfo);
sometimes with environment variable:
string windir = Environment.GetEnvironmentVariable("windir");

Keine Kommentare:
Kommentar veröffentlichen