vote up 3 vote down star

I'm working on porting some classic VB6 code to C# and just stumbled across a usage of the PV function.

I feels wrong including a reference to the Microsoft.VisualBasic Assembly. Is this something that is commonly done, or should I explore further options. The next idea that pops into my mind is exploring this PV function in Reflector.

flag

3 Answers

vote up 3 vote down check

The use of Microsoft.VisualBasic from C# and VB.NET has been discussed thoroughly under this question. The Microsoft.VisualBasic namespace is fully supported, and will be around as long as .Net is around. There's no reason to avoid it.

EDIT: It's telling that at the time of typing, the other answers for this question are an incorrect reimplementation of the function, and a one-man-band unsupported library from Code Galleries. Come on guys, it would take a real major event for Microsoft to drop the financial functions from VB.

It's a different story for Microsoft.VisualBasic.Compatibility, which is exclusively for use by the VB6 upgrade wizard, may be removed in future versions, and should not be used for new development. There would be some advantages in removing references to this, but personally I'd be sure to achieve a fully working port first.

link|flag
Agree 100% with this. Where does this reluctance to use Microsoft's supported library come from? Is it just the "ewwww... it says VB" mentality? WTF? Microsoft wrote VB6, C#, and then provided (for free) the Microsoft.VisualBasic namespace for JUST THIS PURPOSE. And still people hesitate to use it. Whatever--Take your chances with some other "non-VB, therefore better" option. – JeffK Oct 1 at 19:01
vote up 4 vote down

Pretty straight forward to replicate in C#

    public static double PV(double Rate, int nPer, double Pmt, double FV, bool Type)
    {
        double ann = Math.Pow(1 + Rate, nPer);
        return -(FV + Pmt * (1 + (Type ? Rate : 0)) * ((ann - 1) / Rate)) / ann;
    }

Just a re-arrangement of the formula Microsoft provides.

link|flag
It's almost a rearrangement of Microsoft's formula, except when rate=0. That's when your version divides by zero, and VB6 and Microsoft.VisualBasic return -fv -(pmt*nper). There are pitfalls even in coding up a formula from a webpage. This reinforces my answer - for pity's sake just use Microsoft.VisualBasic and move on to implement something other functionality for the poor old users. – MarkJ Sep 25 at 8:08
vote up 2 vote down

You could use this library that duplicates excel functions in f#

Library

It has PV which is present value. I have used it once or twice. Just drop it in and add the reference.

link|flag
1  
hmmm seems kind of risky relying on a CTP language but I think I'd rather do that than reference the Microsoft.VisualBasic library – Dave Sep 24 at 14:25
Exactly, when I've used it, it was to avoid excel automation and referencing Excel – Gratzy Sep 24 at 14:26
The "NotStandAlone" version is almost 1 meg... almost tempted to just snag the PV function from Reflector, but I'll give this a shot – Dave Sep 24 at 14:40
I prefer JDunkerley's solution - I'd rather add a 2 line function to my code rather than reference a whole assembly. – Tom Bushell Sep 24 at 16:11
1  
@Dave - -2 ( -1 because I don't agree, and another -1 because I'm a clueless SO noob and accidentally upvoted your comment, and can't undo it. Doh! ;-) Seriously, there's some good stuff in the VB libraries (Shapes, for example). I think it's short sighted to not take advantage because of anti-VB snobbery. – Tom Bushell Sep 24 at 16:19
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.