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”);

 


Discover more from

Subscribe to get the latest posts sent to your email.

Leave a comment

Trending