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); }
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))"); }