Home
IPhone SMS To Gmail
Consulting
Security Alerts
Blog
Software
Projects
Links
About
Contact
Blog
FriendFeed
Facebook
Flickr
Twitter
Toluu
Last.fm
Picasa
LinkedIn
|
<< Back To All Blogs
Retrieving Text from Win32 SDK's GetLastError() in C#
Thursday, May 21st, 2009
Using C# with the Win32 SDK is like taking something that is bad and making it horrible. That is not to say it isn't manageable and isn't very useful, but it is nonetheless frustrating at the lack of information when an error occurs.
I figured I would quickly post a snippet that you can use in C# to get an actual textual error back instead of just the Windows error code that is returned by GetLastError.
You can cast the error into a textual string by doing the following in C#:
string errorMsg = new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()).Message;
This will then return an actual string of the error that is occurring.
Just a quick note as well: These error messages are not always useful. Often times they are not very descriptive, but at least you don't have to reference the error code number against a long list to find out what is going on.
You could also do the same thing with PInvoke by calling the FormatMessage function, but I am lazy and keep as much in C# as I can.
PInvokin' Tom Out.
Tags
CSharp
CPP
PInvoke
Win32
Related Blogs
Creating a PDF with C# and iTextSharp
Bitmasking userAccountControl attribute in LDAP from C#
Updating an LDAP Property in C#
Copy a DLL from the GAC
Enumerating all attributes of an element and adding them to a dictionary using LINQ with Lambda Expressions
Comments
Currently no comments.
Add A Comment
Name:
URL:
Email Address: (not public, used to send notifications on further comments)
Comments:
Please enter the text from the image:

|