From d192f6b2c0cbb82a7f60405ebb0d1d8f58b71f6b Mon Sep 17 00:00:00 2001 From: shinriyo Date: Fri, 23 May 2014 20:07:29 +0900 Subject: [PATCH] GetIntArray()method useful to get int[] --- src/LitJson/IJsonWrapper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/LitJson/IJsonWrapper.cs b/src/LitJson/IJsonWrapper.cs index 9b7e2d1..6fcfb4a 100644 --- a/src/LitJson/IJsonWrapper.cs +++ b/src/LitJson/IJsonWrapper.cs @@ -43,6 +43,7 @@ public interface IJsonWrapper : IList, IOrderedDictionary bool GetBoolean (); double GetDouble (); int GetInt (); + int[] GetIntArray (); JsonType GetJsonType (); long GetLong (); string GetString ();