Normally, when using the XMLSerializer to automagically serialize an ISerializable object, a .dll file is generated on C:\WINDOWS\Temp.
If I implement IXMLSerializable instead, where I'm telling it how to serialize / deserialize, will it also generate this DLL?
I have a very simple class to serialize, and I'm trying to avoid this automatic generation of files, for permissions reasons.
Any ideas?
Thanks.