Method Reduce
Reduce(Object)
Reduces the key-value pair to further meaning full pairs.
Declaration
void Reduce(object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | Value for the specified key. |
Examples
Following example illustrate the usage of Reduce.
public void Reduce(object value)
{
count += int.Parse(value.ToString());
}