20

What does "The invocation of the constructor on type that matches the specified binding constraints threw an exception." mean in silverlight?

Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447

1 Answers1

27

Silverlight called your constructor, and your constructor threw an exception.

You can find the original exception from your constructor in the InnerException.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964