29 lines
508 B
Plaintext
29 lines
508 B
Plaintext
include::../why-dotnet.adoc[]
|
|
|
|
include::../impact-dotnet.adoc[]
|
|
|
|
include::../how-dotnet.adoc[]
|
|
|
|
=== Code examples
|
|
|
|
==== Noncompliant code example
|
|
|
|
[source,csharp,diff-id=1,diff-type=noncompliant]
|
|
----
|
|
void CreateNewTime()
|
|
{
|
|
var birthDate = new DateTime(1994, 7, 5, 16, 23, 42);
|
|
}
|
|
----
|
|
|
|
==== Compliant solution
|
|
|
|
[source,csharp,diff-id=1,diff-type=compliant]
|
|
----
|
|
void CreateNewTime()
|
|
{
|
|
var birthDate = new DateTime(1994, 7, 5, 16, 23, 42, DateTimeKind.Utc);
|
|
}
|
|
----
|
|
|
|
include::../resources-dotnet.adoc[] |