삽질을피하는방법
Showing posts with label
c# syntax
.
Show all posts
Showing posts with label
c# syntax
.
Show all posts
Monday, August 28, 2023
simplify C# null check . if(~ !=null) { } is ~? syntax.
if( X != null)
{
X.doSomething();
}
make simple like this
X?.doSomething();
Older Posts
Home
Subscribe to:
Posts (Atom)