C# Operator ‘is’

Operators: is

Used to check whether a cast from type A to type B. It is often more efficient to do the cast using ‘as’ as it will return the casted content instead of just telling you that it would work if you tried.

Example:
    If(lotus is Car)
        System.Console.WriteLine(“A Lotus is a Car”);

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: