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

AddRecord() 공개 메소드

Add the given content to the blob.
public AddRecord ( IEnumerable content ) : void
content IEnumerable
리턴 void
        public void AddRecord(IEnumerable<byte> content)
        {
            this.Content.AddRange(content);
        }