Tagged Questions
3
votes
3answers
406 views
What is the most efficient way to Deserialze an XML file
Aloha,
I have a 8MB XML file that I wish to deserialize.
I'm using this code:
public static T Deserialize<T>(string xml)
{
TextReader reader = new StringReader(xml);
Type type = ...
1
vote
1answer
203 views
Even using sgen on my service class still results in agonizingly slow constructor
So I'm trying to speed up our applications startup times -- and I've identified a major bottleneck to work on. Each of our webservice client classes takes forever and a day to instantiate. Some ...