@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Get the last error from a StrongName function !!!!C# Signature: /// <summary> /// Return the last error /// </summary> /// <returns>error information for the last strong name call</returns> [DllImport("mscoree.dll")] public extern static int StrongNameErrorInfo() !!!!User-Defined Types: None. !!!!Notes: This function is exported from mscorsn.dll in v1.0 and v1.1 of the .NET framework, but it will be moved to mscorwks.dll in v2.0. There is a shim in mscoree.dll which will redirect to the appropriate implementation dll, which has the same name. !!!!Tips & Tricks: The results of this function are an HRESULT that can be translated with Marshal.GetExceptionForHR@msdn and Marshal.ThrowExceptionForHR@msdn !!!!Sample Code: See the sample on Shawn Farkas' blog for a complete sample of using this API: http://blogs.msdn.com/shawnfa/archive/2004/07/09/178902.aspx
Edit mscorsn.StrongNam...
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.