0
votes
1answer
22 views
.NET XmlSerializer: generating array types with SGEN
Since .NET's XmlSerializer is a complete joke, I need to use sgen to generate assemblies at build time, rather than rely on the ridiculously stupid dynamic runtime generation.
Thi …
0
votes
0answers
8 views
SGEN throwing an AccessViolation error
I have a build process using the sgen.exe tool to build Xmlserializer assemblies to optimize their use in a WinForms application. This application was originally written on the .N …
1
vote
0answers
19 views
sgen deserialization different from JIT deserialization
I have some web services that are returning data as an ArrayList of varying data types. One of those data types is MyType, which is a serializable type defined in another dll. We …
0
votes
0answers
54 views
VS2008 - SGen error on Build
I get the following error when attempting to build my assembly in Release configuration in Visual Studio 2008:
SGEN : error : Cannot load dynamically generated serialization assem …
0
votes
0answers
69 views
Bug in Sgen.exe
It seems that sgen.exe could not generate generic type XmlSerializer, right?
My genereic type:
[Serializable]
[XmlRoot(ElementName = "Masterx")]
public class Masterx<T> whe …
1
vote
1answer
265 views
SGEN, InternalsVisibleTo and assembly signing
Hi,
I'm trying to do something a bit unusual...
I have this class Foo :
public class Foo
{
public Foo(string name)
{
this.Name = name;
}
internal Foo()
…
0
votes
1answer
149 views
Why is my application using CSC during execution
I've been experimenting with the Remotesoft Linker and Mini Deployment tools to create a single native executable (that doesn't need the framework installed) from my managed code. …
3
votes
1answer
242 views
Precompile XmlSerializers with XmlAttributeOverrides
When constructing XmlSerializer instances in .NET, assemblies for serializing and deserializing the specified type are generated dynamically. This is a time-consuming process. The …
3
votes
3answers
260 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);
…
0
votes
2answers
276 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 Con …
2
votes
3answers
579 views
Why won’t Visual Studio 2005 generate an Xml Serialization assembly?
Why isn't Visual Studio 2005 generating a serialization setting when I set the project setting "Generate Serialization Assembly" to "On"?
