--
You received this message because you are subscribed to the Google Groups "SharpKit Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sharpkit+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hello
Null reference – as t2 is null
Zdenek
--
You received this message because you are subscribed to a topic in the Google Groups "SharpKit Support" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/sharpkit/N25En1vL23A/unsubscribe.
To unsubscribe from this group and all its topics, send an email to sharpkit+u...@googlegroups.com.
Simply by using DateTime?
Even using that
C# code like
if (equipment.EstimatedDeliveryTime == null)
is converted to comparion like
if (System.DateTime.op_Equality(equipment.EstimatedDeliveryTime, null)){
simple workaround is to modify the C# code like
if (equipment.EstimatedDeliveryTime.HasValue == false)
so not a big issue – but probably worth fixing
(unless not fixed already, I’m on sharpkit 5.4.4)
Z
If it is DateTime? ( nullable type) I can really do that J
Yes – talking about “datetime?” ( or Nullable<DateTime> - whatvever version you prefer)
And what you are describing is exactly the case
Thanks