Property Value
Value
Sets/returns value from intermediate Key-Value pair.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Examples
Example sets the value in KeyValuePair
public KeyValuePair FinishReduce()
{
outputMapEntry.Key = outputKey;
outputMapEntry.Value = count;
return outputMapEntry;
}