0
Posted on 3:58 AM by Softminer and filed under

#region "API"
[DllImport("shell32.dll")]

public static extern int ShellExecute(int hwnd,string lpOperation,string lpFile,string lpParameters,string lpDirectory,int nShowCmd);
public const int SW_MAXIMIZE = 3;
public const int SW_NORMAL = 1;
#endregion "API"
0
Responses to ... How to run windows API in C#