public static void SerialisoiXml(string tiedosto, Harjoitukset ic)
 {
     XmlSerializer xs = new XmlSerializer(ic.GetType());
     TextWriter tw = new StreamWriter(tiedosto);
     try
     {
         xs.Serialize(tw, ic);
     }
     catch (Exception e)
     {
         throw e;
     }
     finally
     {
         tw.Close();
     }
 }
        public static void deSerialisoiHarjoitukset(string filePath, ref Harjoitukset harkat)
        {
            XmlSerializer deserializer = new XmlSerializer(typeof(Harjoitukset));
            try
            {
                FileStream xmlFile = new FileStream(filePath, FileMode.Open);
                harkat = (Harjoitukset)deserializer.Deserialize(xmlFile);
                xmlFile.Close();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {

            }
        }