Example #1
0
        public static string Serialize(KEYVALUES.KeyValues val, string type = "sjon")
        {
            bool isxml = type.Equals("xml");
            IKeyValuesSerializer serialer = SerializerFactory(isxml);

            return(serialer.Serialize(val));
        }