I am not able to serialize the following property correctly
pubic string[] names {get;set;}
Many times names array is null and at the time of serialization it is coming as "names":[""]
JsonConvert.SerializeObject(Requestobj, settings);
How can I change from "names" : [""] to "names" : []