Dev2.JPropertyExtensionMethods.IsEnumerable C# (CSharp) Method

IsEnumerable() public static method

public static IsEnumerable ( this property ) : bool
property this
return bool
        public static bool IsEnumerable(this JProperty property)
        {
            return property.Value is JArray;
        }