SharpTune.RomMod.Blob.Blob C# (CSharp) Method

Blob() public method

Create a new blob using the given start address and content.
public Blob ( uint startAddress, IEnumerable content ) : System
startAddress uint
content IEnumerable
return System
        public Blob(uint startAddress, IEnumerable<byte> content)
        {
            this.StartAddress = startAddress;
            this.Content = new List<byte>();
            this.Content.AddRange(content);
        }