ParseObjectAdd Method Parse
Adds a value for the given key, throwing an Exception if the key already has a value.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public void Add(
	string key,
	Object value
)

Parameters

key
Type: SystemString
The key for which a value should be set.
value
Type: SystemObject
The value for the key.
Remarks

This allows you to use collection initialization syntax when creating ParseObjects, such as:
var obj = new ParseObject("MyType")
{
    {"name", "foo"},
    {"count", 10},
    {"found", false}
};
See Also

Reference