Reputation: 247
Currently i have a Office Add-in (com add-in) for Office 2007, Office 2010 written in .NET 2.0.
I need to update the Add-in for Office 2013, can i continue with .net 2.0? or do i need to upgrade to higher version of .net framework.
Thanks
Upvotes: 0
Views: 99
Reputation: 2501
using .NET 2.0 is fine and if you do not need any of the new functionality then it will work.
New functionality in 4.0 such as dynamic
is useful in COM instead of reflection over COM properties. Also if you might need real time functionality in the future then IObservable and Rx support are also useful.
Upvotes: 1