Home
VB.Net
2D
Application
Class
Data Structure
Data Types
Database ADO.net
Date Time
Development
Event
File Directory
Generics
GUI
Internationalization I18N
Language Basics
LINQ
Network Remote
Reflection
Security
Thread
Windows Presentation Foundation
Windows System
XML
XML LINQ
Convert to Single « Development « VB.Net
VB.Net
Development
Convert to Single
1.
Convert.ToSingle (Boolean) converts Boolean value to single-precision floating-point number.
2.
Convert.ToSingle (Byte) converts 8-bit unsigned integer to single-precision floating-point number.
3.
Convert.ToSingle (Decimal) converts decimal number to single-precision floating-point number.
4.
Convert.ToSingle (Double) converts double number to single-precision floating-point number.
5.
Convert.ToSingle (Int16) converts 16-bit signed integer to floating-point number.
6.
Convert.ToSingle (Int32) converts 32-bit signed integer to single-precision floating-point number.
7.
Convert.ToSingle (Int64) converts 64-bit signed integer to single-precision floating-point number.
8.
Convert.ToSingle (Object) converts object to a single-precision floating-point number.
9.
Convert.ToSingle (SByte) converts signed integer to single-precision floating-point number.
10.
Convert.ToSingle (String) converts string to single-precision floating-point number.
11.
Convert.ToSingle (UInt16) converts 16-bit unsigned integer to single-precision floating-point number.
12.
Convert.ToSingle (UInt32) converts 32-bit unsigned integer to single-precision floating-point number.
13.
Convert.ToSingle (UInt64) converts 64-bit unsigned integer to single-precision floating-point number.