i want to define my own custom properties for string object .so that i can use this properties directly on string objects. eg:- str is my string object.then i should be able to use .IsNull property as shown below.
var str = “string”;
str.IsNull; //returns true if null
str.IsEmpty; returns true if empty
null(strings andnullare different types).