Search Web

Thursday, September 1, 2011

3 Things Must You Know About C# Code.



1. Null Coalescing Operator (??)

A new operator can be used which can be shortcut of ternary operator to check the null value:

Ternary operator (?:):

string empName = (value != null) ? value : string.Empty;

we can write it using null-coalescing operator (??):

string empName = value ?? string.Empty;

2. The As Cast

we might have seen the code something like:
if (customer is DeluxCustomer)
{
var dCust = (DeluxCustomer)customer
// ...
}

This is redundant because we are checking the type twice. Once in the is check and once in the cast.

We can use as operator in place. This will cast the type if the types are compatible, or return null if not:
var dCust = customer as DeluxCustomer;
// ... we can write if condition to check for null
}

we can avoid double-checking the type.

3. Auto-Properties

This is the new concept to define the properties in C#: we can define the auto-property without much code:
public class Name

{
public int name { get; set; }
public int name { get; set; }
}

0 comments:

Post a Comment