Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SerializationInfo::GetSingle Method (String^)

 

Retrieves a single-precision floating-point value from the SerializationInfo store.

Namespace:   System.Runtime.Serialization
Assembly:  mscorlib (in mscorlib.dll)

public:
float GetSingle(
	String^ name
)

Parameters

name
Type: System::String^

The name of the value to retrieve.

Return Value

Type: System::Single

The single-precision floating-point value associated with name.

Exception Condition
ArgumentNullException

name is null.

InvalidCastException

The value associated with name cannot be converted to a single-precision floating-point value.

SerializationException

An element with the specified name is not found in the current instance.

If the value is a single-precision floating-point number, or can be converted to one, that value is returned; otherwise, a InvalidCastException is thrown. All conversions are done by the IFormatterConverter associated with this SerializationInfo.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft