SharpYaml
SharpYaml copied to clipboard
Help class header
trafficstars
pls help! i always get this kind of weird text behind my class object
!Object.Test,%2520Object.Test,%2520Version=1.0.0.0,%2520Culture=neutral,%2520PublicKeyToken=null ObjectCollection:
var yourObject = new YourClass();
var config = new SerializerSettings();
config.RegisterTagMapping("YourName", typeof(YourClass));
var serialzer = new Serializer(config);
serialzer.Serialize(stream, yourObject);
Have a try, it works for me