Financial functions in .Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I am writing a C# application but needs some financial functions like
Present Value function (PV) in the Microsoft.visualbasic assembly. Is there
anyway to access these functions from the Microsoft.VisualBasic assemble or
are there any other .Net assemblies that would provide access for a C# app?
 
Yes, make a reference to the VB assembly, use the right "using" statement in
your .CS file and just call the functions...
 
Back
Top