(I assume anyone out there using SalesForce web services from c# has also seen this. If there's a way around this - obviously I'd rather know that.)
Whenever I set, say, the value of a field on a wsdl.exe generated web service like this:
campaignStat.Clicks__c = ToDouble(Stat.clicks);
campaignStat.Clicks__cSpecified = true;
Can anyone think of a way to not have to worry about forgetting to set that boolean? I don't care if it's a hack.