OurSonic.SonicLevels.SonicLevels C# (CSharp) Method

SonicLevels() public method

public SonicLevels ( ) : System
return System
        public SonicLevels()
        {
            int[] myArray = { 1, 3, 5, 7, 9 };

            c = lvlDirectory + "sonicLevels.xml";
            if (!File.Exists(c))
            {
                var j = File.CreateText(c);
                j.Write("<soniclevels></soniclevels>");
                j.Close();
            } try
            {
                doc = XDocument.Load(c);
            }
            catch (Exception j)
            {

            }
        }