10 lines
208 B
Plaintext
10 lines
208 B
Plaintext
[source,csharp]
|
|
----
|
|
using System.Diagnostics;
|
|
|
|
public void Method(object myObject)
|
|
{
|
|
Debug.Assert(myObject != null);
|
|
myObject.ToString(); // Compliant: 'myObject' is known to be not null here.
|
|
}
|
|
---- |