| c# Programming Glossary: lpbufferHow do you get total amount of RAM the computer has? http://stackoverflow.com/questions/105031/how-do-you-get-total-amount-of-ram-the-computer-has  extern bool GlobalMemoryStatusEx In Out MEMORYSTATUSEX lpBuffer Then use like ulong installedMemory MEMORYSTATUSEX memStatus.. 
 IO exception error when using serialport.open() http://stackoverflow.com/questions/14885288/io-exception-error-when-using-serialport-open  lpSource int dwMessageId int dwLanguageId   StringBuilder lpBuffer int nSize IntPtr arguments DllImport kernel32.dll CharSet CharSet.Auto.. static string GetMessage int errorCode  StringBuilder lpBuffer new StringBuilder 0x200 if FormatMessage 0x3200 new HandleRef.. 0x3200 new HandleRef null IntPtr.Zero errorCode 0 lpBuffer lpBuffer.Capacity  IntPtr.Zero 0  return lpBuffer.ToString .. 
 How to change Global Windows Proxy using C# .NET with `Immediate Effect` http://stackoverflow.com/questions/2020363/how-to-change-global-windows-proxy-using-c-sharp-net-with-immediate-effect  InternetSetOption IntPtr hInternet int dwOption IntPtr lpBuffer int dwBufferLength public const int INTERNET_OPTION_SETTINGS_CHANGED.. 
 How can I write fast colored output to Console? http://stackoverflow.com/questions/2754518/how-can-i-write-fast-colored-output-to-console  WriteConsoleOutput SafeFileHandle hConsoleOutput CharInfo lpBuffer Coord dwBufferSize Coord dwBufferCoord ref SmallRect lpWriteRegion.. 
 Checking stack size in C# http://stackoverflow.com/questions/2901185/checking-stack-size-in-c-sharp  IntPtr  lpAddress ref MEMORY_BASIC_INFORMATION lpBuffer int  dwLength private unsafe static uint EstimatedRemainingStackBytes.. 
 How do I use InternetSetOption? http://stackoverflow.com/questions/6353715/how-do-i-use-internetsetoption  InternetSetOption IntPtr hInternet int dwOption IntPtr lpBuffer int lpdwBufferLength private void RefreshIESettings string strProxy.. 
 How to parse a text file in C# and be io bound? http://stackoverflow.com/questions/7153315/how-to-parse-a-text-file-in-c-sharp-and-be-io-bound  static extern uint ReadFile SafeFileHandle hFile Out byte lpBuffer uint nNumberOfBytesToRead out uint lpNumberOfBytesRead IntPtr.. 
 C# classes to undelete files? [duplicate] http://stackoverflow.com/questions/8819188/c-sharp-classes-to-undelete-files  public static extern bool ReadFile IntPtr hFile byte lpBuffer uint nNumberOfBytesToRead ref uint lpNumberOfBytesRead IntPtr.. 
 |