SyntaxFix
Write A Post
Hire A Developer
Questions
public static T isNull<T>(this T v1, T defaultValue) { return v1 == null ? defaultValue : v1; } myValue.isNull(new MyValue())