using System.Collections.Generic; namespace TLang.VM { public class Chunk { public List Arguments {get;set;}=new List(); public byte[] Code {get;set;} } }