Saturday, August 10, 2019

Null Function in c# or null method in c#

        decimal? net_value(decimal? BASIC, decimal? WD, decimal? AB)
        {
            return BASIC - ((BASIC / WD) * AB);
        }

No comments:

Post a Comment

Linq Expression syntax for where condtion in linq

(Expression<Func<T, bool>> filter)