Hi there everyone! I'm new to the .NET platform and I have a hard time with a specific issue while trying to serialize/deserialize a class that needs to map to a pre-defined xml schema. What I haven't yet manage to do is the following:
Suppose we have the following xml: <somelement> ... <totalTravelPrice currency="GBP">1</totalTravelPrice> </somelement> I haven't found a way to implement this yet whether I try to encapsulate this element into a class or as class members (totalTravelPrice and totalTravelPriceCurrency for example). Any ideas / help for the newbie? :)
