private decimal? _amount; // For nullable decimals public string FormattedAmount { get { return _amount == null ? "null" : string.Format("{0:C}", _amount.Value); } }