Besides arithmetic, logical, relational C# language provides some more valuable operators, known as miscellaneous operators. Misc operators are particular kinds of operators. Miscellaneous operators contain three operands: the first gets evaluated first if non zero, then the second gets evaluated and then the last one shows the result. Misc operators are helpful in reducing work by giving quick results. This operator directly works on the data and its address.
E.g. sizeOf(a) now if this a is an integer, then it will return 4. It returns as per the data type of the variable.
E.g. &a this will return the exact address of a.
|