using System; using System.Collections.Generic; using System.Text; using Sunweaver.DataPrototypes; namespace Sunweaver.Commands.Abstracts { /// /// All DNA commands inherit from this class. It handles a basic interface as well as a default /// ToString method. /// abstract public class BasePair { abstract public void Implementation(VirtualMachine VM); public override string ToString() { return this.GetType().Name; } } }