0

I develop a windows phone 8 app written in visual basic. I want to integrate the Nokia Imaging SDk into my app. Is the SDK available for visual basic or only for C#???

David Božjak
  • 16,887
  • 18
  • 67
  • 98
John Lim
  • 21
  • 2

1 Answers1

1

All .NET applications, be it C# or VB.NET or whichever language, are compiled in the same intermediary language, called CIL. Basically, if the SDK works with a C# app, it will work with a VB.NET app.

Kevin Gosse
  • 38,392
  • 3
  • 78
  • 94