Related resources for AS Operator
  • Discussing The "Is" And "As" Operators Of C#10/6/2023 9:19:06 AM. The "is" and the "as" operators of C# are used to compare types. This code example shows how to use the is and as operators in the C# to avoid type mismatch exceptions or other typ
  • As Operator In C#9/15/2023 10:08:34 AM. The As operator in C# is used to convert from one type to another. You can use casting to cast one type to another but if you apply casting on incompatible types, you will get an exception.
  • Language Extensions In C# 2.09/13/2023 4:14:47 AM. This article intends to the C# 1.x developers and covers what-why-how the new enhancement .The philosophy behind the document is to have quick update on C# 2.0 and leverage this in your day to day dev
  • The Is and As Operators in C#10/26/2018 12:01:27 AM. In this quick article you will take a look at the is and as operators in C#.
  • Introduction To Type Casting In C#9/25/2015 4:51:08 AM. In this article we will learn type casting and converting in C#. Some operators will also be discussed.
  • Safe Type Cast Using "IS" and "AS" Operators4/24/2015 1:54:38 AM. This article describes how to do safe type casting using the “IS” and “AS” operators in C# programming.
  • Conversion Between Types in C#3/22/2015 4:15:26 PM. The article describes the type conversion as well as the compile time and run time errors in C# programming.