/// <summary> /// Concat all il line codes as readable text /// </summary> /// <returns>A single string with \n literals included</returns> public new string ToString() { string result = string.Empty; InstructionStream.ForEach(I => result += I.ToString() + "\n"); return(result); }