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