show/hide this revision's text 4 deleted 38 characters in body

This will work if your Options type is a struct, as you can a alter a struct itself.

If Options is a class (reference type), you can't assign to the current instance of a reference type with in that instance. Suggesting you to write a helper class, and put your Read and Save methods there, like this

     public class XmlSerializerHelper<T>
    {
        public Type _type;

        public XmlSerializerHelper()
        {
            _type = typeof(T);
        }


        public void Save(string path, object obj)
        {
            using (TextWriter textWriter = new StreamWriter(path))
            {
                XmlSerializer serializer = new XmlSerializer(_type);
                serializer.Serialize(textWriter, obj);
            }

        }

        public object T Read(string path)
        {
            object T result;
            using (TextReader textReader = new StreamReader(path))
            {
                XmlSerializer deserializer = new XmlSerializer(_type);
                result = deserializer.Deserialize(textReader);
            (T)deserializer.Deserialize(textReader);
            }
            return result;

        }
    }

And then consume it from your caller, to read and save objects, instead of trying it from the class.

//In the caller

var helper=new XmlSerializerHelper<Options>();
var obj=new Options();

//Write and read
helper.Save("yourpath",obj);
obj=(Options)helper.Read("yourpath")obj=helper.Read("yourpath");

And put the XmlSerializerHelper in your Util's namespace, it is reusable and will work with any type.

show/hide this revision's text 3 deleted 2 characters in body; added 119 characters in body

This will work if your Options type is a struct, as you can a alter a struct itself.

If Options is a class (reference type), you can't assign to the current instance of a reference type with in that instance. Suggesting you to write a helper class, and put your Read and Save methods there, like this

 public class XmlSerializerHelper<T>
    {
        public Type _type;

        public XmlSerializerHelper(Type tXmlSerializerHelper()
        {
            _type = ttypeof(T);
        }


        public void Save(string path,object path, object obj)
        {
            using (XmlSerializer serializer TextWriter textWriter = new XmlSerializer(_type) StreamWriter(path)) 
            {
                TextWriter textWriter XmlSerializer serializer = new StreamWriter(path)XmlSerializer(_type);
              serializer.Serialize(textWriter, obj);
            }   

        }

        public object Read(string path)
        {
            object result;
            using (XmlSerializer deserializer TextReader textReader = new XmlSerializer(_type)StreamReader(path)) 
            {
                TextReader textReader XmlSerializer deserializer = new StreamReader(path)XmlSerializer(_type);
              result =deserializer.Deserialize(textReader);
            } 
            return result;

        }
    }

And then consume it from your caller, to read and save objects, instead of trying it from the class.

//In the caller

var helper=new XmlSerializerHelper(typeof(Options));
XmlSerializerHelper<Options>();
var obj=new Options();

//Write and read
helper.Save("yourpath",obj);
obj=(Options)helper.Read("yourpath");

And put the XmlSerializerHelper in your Util's namespace, it is reusable and will work with any type.

show/hide this revision's text 2 added 212 characters in body

This will work if your Options type is a struct, as you can a alter a struct itself.

If Options is a class (reference type), you can't assign to the current instance of a reference type with in that instance. Suggesting you to write a helper class, and put your Read and Save methods there, like this

   public class XmlSerializerHelper

  {
    public Type _type;

    public XmlSerializerHelper(Type t)
    {
        _type = t;
    }


    public void Save(string path,object obj)
    {
        using (XmlSerializer serializer = new XmlSerializer(_type) ) 
        {
          TextWriter textWriter = new StreamWriter(path);
          serializer.Serialize(textWriter, obj);
        }   

    }

    public object Read(string path)
    {
        object result;
        using (XmlSerializer deserializer = new XmlSerializer(_type)) 
        {
          TextReader textReader = new StreamReader(path);
          result =deserializer.Deserialize(textReader);
        } 
        return result;

    }
}

And then consume it from your caller, to read and save objects, instead of trying it from the class.

//In the caller

var helper=new XmlSerializerHelper(typeof(Options));
var obj=new Options();

//Write and read
helper.Save("yourpath",obj);
obj=(Options)helper.Read("yourpath");

And put the XmlSerializerHelper in your Util's namespace, it is reusable and will work with any type.

show/hide this revision's text 1