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::AddValue Method (String^, Single)

 

Adds a single-precision floating-point value into the SerializationInfo store.

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

public:
void AddValue(
	String^ name,
	float value
)

Parameters

name
Type: System::String^

The name to associate with the value, so it can be deserialized later.

value
Type: System::Single

The single value to serialize.

Exception Condition
ArgumentNullException

The name parameter is null.

SerializationException

A value has already been associated with name.

If two values are added with names that differ only by case, no exception will be thrown, which is not a recommended practice. However, adding two values with the exact same name will cause the SerializationException to be thrown.

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