Pchp.Library.Variables.is_resource C# (CSharp) Method

is_resource() public static method

Checks whether a dereferenced variable is a valid PhpResource.
public static is_resource ( PhpValue variable ) : bool
variable Pchp.Core.PhpValue The variable.
return bool
        public static bool is_resource(PhpValue variable)
        {
            //PhpResource res = variable as PhpResource;
            //return res != null && res.IsValid;
            throw new NotImplementedException();
        }