RocksmithToolkitLib.Xml.Song2014.LoadFromFile C# (CSharp) Method

LoadFromFile() public static method

public static LoadFromFile ( string xmlSongRS2014File ) : Song2014
xmlSongRS2014File string
return Song2014
        public static Song2014 LoadFromFile(string xmlSongRS2014File)
        {
            using (var reader = new StreamReader(xmlSongRS2014File))
            {
                return new XmlStreamingDeserializer<Song2014>(reader).Deserialize();
            }
        }