Basic.BasicUsage.Load C# (CSharp) Method

Load() private method

private Load ( ) : void
return void
        private void Load()
        {
            var json = File.ReadAllText(@"..\..\CardTable.json");
            _cardTable = new TemplateTable<string, CardDescription>();
            _cardTable.Load(new TemplateTableJsonLoader<string, CardDescription>(json, true));
        }