Battle_Script_Pro.Form1.GetROMCode C# (CSharp) Method

GetROMCode() private method

private GetROMCode ( ) : string
return string
        private string GetROMCode()
        {
            byte[] file = File.ReadAllBytes(selectedROMPath);
            char c;
            string toReturn = "";
            for (int i = 0; i < 4; i++)
            {
                c = Convert.ToChar(file[0xAC + i]);
                toReturn += c;
            }
            return toReturn;
        }
Form1