C# API6 Example Aplication (Async)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Escapee
    Junior Member
    • Feb 2009
    • 51

    #46
    litachugga

    You can find out what error is being caught by looking at the Exception error message.

    Change your catch block to this and run in debug, the error message will appear in the VStudio "output" window

    ( the return of null is from your catch block of code )

    Code:
    	catch (Exception ex)
    	{
    	    Console.WriteLine(ex.Message);
                return null;
    	}

    Comment

    Working...
    X