Hi everyone,
I really can't figure this one out! (if it's even possible). From a WCF service we are receiving product information. A product datacontract has some members that are defined as strings (but are actually integers), but we want to process them as integers.
When I change the datatype in the contract on the client side from string to int, my problem is solved. However, some products have a string.Empty value, which can't be deserialized into an int. Is there anyway around this? Really don't want to convert my resultset after deserialization...