I have a WebService method that sends to the client an object array received
from the server as a collection. Each element in the object array is a class
entity object. I would like to cache each of these class entities on the
client which is a windows forms. When ready to send back, I would like to
check if any of the class entity field values have changes.
I tried to implement .Equals but does not work. Since the Web Service
stripped the methods. What is the best way I can compare if the class entity
field values have changed?
from the server as a collection. Each element in the object array is a class
entity object. I would like to cache each of these class entities on the
client which is a windows forms. When ready to send back, I would like to
check if any of the class entity field values have changes.
I tried to implement .Equals but does not work. Since the Web Service
stripped the methods. What is the best way I can compare if the class entity
field values have changed?
Comment