Exemplo n.º 1
0
 public static TextInput MakeFromString(string str)
 {
     var src = new TextInput();
     src.stringContents = str;
     return src;
 }
Exemplo n.º 2
0
 public static TextInput MakeFromFile(string filepath)
 {
     var src = new TextInput();
     src.filepath = filepath;
     return src;
 }