I\'m looking for a key/value pair object that I can include in a web service.
I tried using .NET\'s System.Collections.Generic.KeyValuePair<> class, but it doe
Just define a struct/class.
[Serializable] public struct KeyValuePair { public K Key {get;set;} public V Value {get;set;} }