Shovel.Vm.Vm.CountCellsNullableInt C# (CSharp) Method

CountCellsNullableInt() private method

private CountCellsNullableInt ( int i ) : int
i int
return int
        int CountCellsNullableInt(int? i)
        {
            if (i.HasValue) {
                return 1;
            } else {
                return 0;
            }
        }
Vm