blob: c60e3fb0f120c72a21aa8139c1380fabfa889e3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Protobuf.UI
{
public class FileItem : Item
{
public override string ToString()
{
return File.ReadAllText(Path);
}
}
}
|