mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-04 04:06:26 -05:00
16 lines
311 B
C#
16 lines
311 B
C#
using System.IO;
|
|
using System.Text;
|
|
|
|
#if UNIJSON_PROFILING
|
|
namespace UniJSONPRofiling
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var json = File.ReadAllText(args[0], Encoding.UTF8);
|
|
var parsed = UniJSON.JsonParser.Parse(json);
|
|
}
|
|
}
|
|
}
|
|
#endif |