Im upgrading my work project to .Net9 - we were using Microsoft.Identity.Web version 1.25.10 which supported the IsNullOrEmpty() method for JObjects, Ilists/Arrays/Ienumerables etc, but after updating to 3.7.0 it gives me a load of errors?
Has this been removed on one of the releases and if it has does someone have a link? ive tried to find some information online but cant seem to find anything.
e.g
thanks,
Aaron
Has this been removed on one of the releases and if it has does someone have a link? ive tried to find some information online but cant seem to find anything.
e.g
C#:
if (!FormData.IsNullOrEmpty()) //FormData is JObject - this works in v 1.25.10 but not in 3.7.0
{
}
thanks,
Aaron