예제 #1
0
        public override string ToString()
        {
            string str = "Waymark Presets Section ( ID: " + SectionID.ToString() + ", Offset in File( includes section header ): 0x" + FileOffset.ToString("X") + ", Length: 0x" + SectionData.Length.ToString("X") + " bytes( excluding section header ) )\r\n";

            foreach (WaymarkPreset preset in Presets)
            {
                str += preset.ToString();
                str += "\r\n-----------\r\n";
            }
            return(str);
        }
예제 #2
0
 public override string ToString()
 {
     return("Unknown Section Type (ID: " + SectionID.ToString() + ", Offset in File (includes section header): 0x" + FileOffset.ToString("X") + ", Length: 0x" + SectionData.Length.ToString("X") + " bytes (excluding section header))");
 }