173
protected virtual void print_do(string msg) { throw new NotImplementedException(); }
1
using System;
2
using System.Collections.Generic;
3
4
5
public class Program
6
{
7
public static void Main()
8
{
9
var history_lesson = new History203Controller();
10
history_lesson.gotoA();
11
history_lesson.gotoC();
12
history_lesson.goBack();
13
history_lesson.gotoB();
14
history_lesson.gotoC();
15
history_lesson.goBack();
16
}
17
}
18
19
20
public class FrameEvent {
21
public FrameEvent(String Msg, Dictionary<String,object> Parameters) {
22
this.Msg = Msg;
23
this.Parameters = Parameters;
24
}
Cached Result