摘要:
public class Screen { /// Primary Screen #region Win32 API [DllImport("user32.dll")] static extern IntPtr GetDC(IntPtr ptr); [DllImport("gdi32... 阅读全文
摘要:
public class Screen { /// Primary Screen #region Win32 API [DllImport("user32.dll")] static extern IntPtr GetDC(IntPtr ptr); [DllImport("gdi32... 阅读全文
摘要:
贪婪:.+。(默认为贪婪模式,尽可能的多匹配。) 非贪婪:.+?。(尽可能的少匹配,(1个。)) 阅读全文
摘要:
using System; namespace TheDelegate { public class People { public static void Say() { Console.WriteLine("好的,我说一下,是我代干的哈。"); } public static int S... 阅读全文
摘要:
#include #include #include #define random(a,b) (rand() % (b-a) + a) using namespace std; int main() { srand((unsigned)time(NULL)); for(int i=0; i<10; i++) cout << random(1,100) ... 阅读全文
|