SharpTune.RomMod.Blob.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Describe the blob in human terms.
public ToString ( ) : string
리턴 string
        public override string ToString()
        {
            return string.Format("Start: {0:X8}, Length: {1:X8}, Data: {2:X}", this.StartAddress, this.Content.Count, BitConverter.ToString(this.Content.ToArray()));
        }