how to use the results of a method in another method in a different class initialization at vb.net
Posted
by singgih
on Stack Overflow
See other posts from Stack Overflow
or by singgih
Published on 2010-05-24T08:31:59Z
Indexed on
2010/05/24
8:41 UTC
Read the original article
Hit count: 151
vb.net
I have a class which has the following methods:
Public Function rumusbuffer () As Decimal
buffer = (ukuranblok - pntrblok) / (ukrnrecord + pntrblok)
Return buffer
End Function
Public Function rumusW () As Decimal
interblock = pntrblok + ((pntrblok + intrblok) / buffer)
Return interblock
End Function
how can I make the buffer can be used on its function rumusw but different forms so that her class should be re-initialization .. but the calculation method can rumusbuffer rumusw d use in the method?
© Stack Overflow or respective owner