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.
