@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Retrieves the boundaries of the stack that was allocated by the system for the current thread. !!!!C# Signature: [DllImport("kernel32.dll", SetLastError=true)] static extern void GetCurrentThreadStackLimits(out uint lowLimit, out uint highLimit); !!!!VB Signature: Declare Function GetCurrentThreadStackLimits Lib "kernel32.dll" (ByRef lowLimit As UInteger, ByRef highLimit As UInteger) !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: uint low; uint high; GetCurrentThreadStackLimits(out low, out high); var size = (high - low) / 1024; Documentation: GetCurrentThreadStackLimits@msdn on MSDN
Edit kernel32.GetCurre...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.