Exemplo n.º 1
0
 public static T ReadData(Stream stream)
 {
     return(HelperXML.LoadXml(stream, typeof(T)) as T);
 }
Exemplo n.º 2
0
 public static T ReadData(string FullPath)
 {
     return(HelperXML.LoadXml(FullPath, typeof(T)) as T);
 }