Tagged Questions

7
votes
3answers
2k views

sgen.exe x64 .net c# fails with “assembly with an incorrect format”

I have ws2008 x64 with vs2008. When I set my vs to x64 (because I have 64bit dlls) and run compilation sgen says that An attempt was made to load an assembly with an incorrect format VS takse ...
3
votes
3answers
402 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 = ...
2
votes
1answer
283 views

.XmlSerializers.dll how to use it - confused by examples over the Internet

I'm quite newbie to C#. I've started to use SGEN generated XmlSerializers.dll and I'm really confused right now. Despite that I cannot find any true step by step tutorial how to use it properly I'm ...
2
votes
1answer
672 views

How to force Sgen to create .net 3.5 serializers assembly

I have a sgen build step in my .NET 3.5 library. In VS2010 this generates .NET 4 MyLib.XmlSerializers.dll, which cannot be loaded from .NET 3.5 apps. Does anyone know how to change build step to get ...
2
votes
1answer
1k views

SGEN XMLSerializer - should be .XMLSerializers.dll added as a reference to the current project or to the GAC?

I do some stuff with XMLSerializer class. Like a most of beginners I face with performance issue on app start. I read a lot of blogs, articles and finally use SGEN tool. Now performance looks to be ok ...
1
vote
2answers
202 views

Generating an Xml Serialization assembly for a custom XmlSerializer

I have methods in my class for serializing/deserializing using a different XML structure than what would be produced with the default serializer. The methods create an XmlSerializer for my type but ...
1
vote
1answer
135 views

Serialization of internal class to xml

I ran into problems when trying to xml serialize a class to xml after I changed it from public to internal. Before I changed protection level it was working fine, so I am looking for a way to get ...
1
vote
1answer
195 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 ...
1
vote
2answers
769 views

XmlSerializer, sgen.exe and generics

I have a generic type: public class Packet<T> where T : IContent { private int id; public int Id { get { return this.id; } } private T content; public T Content { get { return ...
0
votes
1answer
360 views

Serialize() not using .XmlSerializers.dll produced with Sgen

I have a sgen step in my .NET 3.5 library, producing a correct XYZ.XmlSerializers.dll in the output directory. Still having poor serialization performance, I discovered that .NET was still invoking a ...