Go to DotNetFunda.com
 Online : 689 |  Welcome, Guest!   Login
 
Home > Articles > VB.NET > Numeric and Date Functions in VB.NET

Submit Article | Articles Home | Search Articles |

Numeric and Date Functions in VB.NET

red flag  Posted on: 11/14/2009 2:45:56 AM by Abhisek | Views: 2257 | Category: VB.NET | Level: Beginner


This article tells about different Numeric and Date functions available in VB.NET.



Numeric Functions in VB.NET

All the numeric functions in VB.NET are implemented as methods of the Math Class. To use any of the Math methods provided by VB.NET, you must prefix the methods with "Math.". Some of these functions and there uses are given below,

Abs(int):- This method returns the absolute value of the specified number
Dim MyNo As Double
MyNo=Math.Abs(65.45)'returns 65.45
MyNo=Math.Abs(-65.45)'returns 65.45
Min(int,int):- This function returns the smaller of two numbers specified.
Dim MyNo As Double
MyNo=Math.Min(65.45,45)'returns 45
Max(int,int):- This function returns the larger of two numbers specified.
Dim MyNo As Double
MyNo=Math.Max(65.45,45)'returns 65.45
Round(int):- It returns the rounded value of the specified number.
Dim MyNo As Double
MyNo=Math.Round(65.45)'returns 65
Pow(int,int):- This function returns a specified number raised to the specified power. If it tales two arguments a, b then it will return a^b.
Dim MyNo As Double
MyNo=Math.Pow(2,3)'returns 2^3, i.e, 8
Sqrt(int):- This function returns the square root of the specified number.
Dim MyNo As Double
MyNo=Math.Sqrt(4)'returns 2
MyNo=Math.Sqrt(36)'returns 6
Date Functions In VB.NET

In VB.NET there are also some date function such as,

Now():- This function returns a date value containing the current date and time according to your system setting.
Dim Dt As Date
Dt=Now()'returns "11/05/2009 7:30:59AM"
Today():- This function returns a date value containing the current date only.
Dim Dt As Date
Dt=Today()'returns "11/05/2009"

TimeOfDay():- It will return a date value containing only current time.
Dim Dt As Date
Dt=TimeOfDay()'returns "2:26:34"
There is also several other functions relating to date and time and also math functions. I have included only the frequently used functions.






If you like this article, subscribe to our RSS Feed. You can also subscribe via email to our Interview Questions, Codes and Forums section.

Found interesting? Add this to:

| More



Please Sign In to vote for this post.

 
Latest post(s) from Abhisek

Latest Articles
Experience:0 year(s)
Home page:
Member since:Sunday, October 11, 2009
Level:Bronze
Status: [Member]
Biography:Thanks and Regards
Abhisek Panda
Go Green And Save Your Future

Submit Article

About Us | The Team | Advertise | Contact Us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you found plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 9/3/2010 3:59:00 AM