I'm using binaryFormatter to encrypt data but i wanna save it without encryption. so next time i just cast it . this is the code that i'm using.
//Creat a binaryFormatter
BinaryFormatter formatter = new BinaryFormatter();
//Direction, Filename and Extention
string path = Application.persistentDataPath + "/enem.sav";
//Creat the File (Blank)
FileStream stream = new FileStream(path, FileMode.Create);
//Get the Data
EnemData data = new EnemData();
//Enter the Data and Encrypt it
formatter.Serialize(stream, data);
stream.Close();