Finantial Formulas in .NET Framework

  • Thread starter Thread starter Laurahn
  • Start date Start date
L

Laurahn

Hello:

Does anybody know how to calculate the "YIELD" for bond in .net ? (the same
formula than excel).

Is there a dll library for .net where can i find that formula?
 
Whatever mathematical formulas .NET has, they are most likely available as
methods of the System.Math class. For something like this, you most-likely
would have to write the correct expression yourself as formulas are not
really what .NET classes are all about.
 
Check out the Microsoft.VisualBasic namespace - it has a Financial class. I
know this isn't a 'System' namespace, but it is available to any .NET
application and it works well.
--
http://www.tangiblesoftwaresolutions.com
C++ to C#
C++ to VB
C++ to Java
Instant C#: VB to C#
Instant VB: C# to VB
Instant C++: VB or C# to C++/CLI
Java to VB & C# Converter: Java to VB or C#
 
Back
Top