Hi everyone, I need help with something in my code. I’m trying to create a custom XML file that was originally typed like this _FileName=“ExampleFile.xml”; so I declared a string exampleString and set filename to it _FileName=ExampleString+“.xml”;.However when I save the xml file it doesn’t have a name it’s simply .xml. Is the _FileName=ExampleString+“.xml”; typed correctly?
public string ExampleString = "exampleFile";
public string _FileName;
//unmodified
_FileName="ExampleFile.xml";
//modified and not working
_FileName=ExampleString+".xml";