Benchmarker.Models.Config.OptionsEqual C# (CSharp) 메소드

OptionsEqual() 정적인 개인적인 메소드

static private OptionsEqual ( IList native, JToken json ) : bool
native IList
json JToken
리턴 bool
		static bool OptionsEqual (IList<string> native, JToken json)
		{
			if (native.Count != json.Count ())
				return false;
			return native.All (opt => json.Any (j => opt == j.ToObject<string> ()));
		}