DateTime
m ((username removed) (log details removed): Moving to Documentation namespace)
(Replacing message template with parser tag)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<message>Write the content here to display this box</message>
To create a Datetime for a specific date use:
To create a Datetime for a specific date use:
  DateTime.Parse('2020-01-01')
  DateTime.Parse('2020-01-01')
Line 13: Line 14:
It will return true for an empty but not nullable DateTime variable.  
It will return true for an empty but not nullable DateTime variable.  
[[Category:OCL]]
[[Category:OCL]]
{{Edited|July|12|2024}}

Latest revision as of 07:41, 17 June 2024

To create a Datetime for a specific date use:

DateTime.Parse('2020-01-01')

or

DateTime.Create(2020, 1, 1)
Empty DateTime that is not nullable

A DateTime that is not nullable, i.e. a DateTime, not a DateTime? Without a date, what value does it have?

You can create a value using - which will be empty:

DateTime.Create(1, 1, 1)

You can also compare an empty DateTime value with this empty DateTime value like this:

vDateTimeValue = DateTime.Create(1, 1, 1) 

It will return true for an empty but not nullable DateTime variable.

This page was edited 94 days ago on 06/17/2024. What links here