67
1
using System;
2
using System.Collections.Generic;
3
4
public class EditorState
5
{
6
private string content;
7
8
public EditorState(string content) {
9
this.content = content;
10
}
11
12
public string Content {
13
get
14
{
15
return content;
16
}
17
}
18
}
19
20
public class Editor
21
{
22
public string Content {get; set; }
23
24
public EditorState createState() {
Cached Result
CAFE at 1 2