Esempio n. 1
0
        private T Deserialize <T>(string response) where T : class, new()
        {
            Type type = typeof(T);


            return(RedmineSerialization.FromXML <T>(response));
        }
Esempio n. 2
0
 private string Serialize <T>(T obj) where T : class, new()
 {
     return(RedmineSerialization.ToXML(obj));
     //  #endif
 }