[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.sdk

how can i convert an expression to decimal that i created at runtime

Hakan OTAL

10/10/2003 12:58:00 AM

how can i convert an expression to decimal that i created at runtime

str1 = ((10*80) / 100)
str2 = (240/80)

str3 = ((10*80) / 100) - (240/80)
(800 / 100) - 6
8 - 6
2

decimal_value = 2

i want to see decimal result...