SharpTune.RomMod.Blob.Blob C# (CSharp) Méthode

Blob() public méthode

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