Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# - what does the unary ^ do?

I have checked out some code and I got an error ('invalid expression term "^"' to be exact) in the line

// choices is a regular array
return choices[^1];

I have never seen a unary caret operator (I am only aware of the XOR operator, but that one obviously takes two operands). Does this operator exist and if so, what does it do?

Note: The site https://www.tutorialsteacher.com/csharp/csharp-operators mentions a unary caret operator in the precedence table but it does not explain what it does.

like image 801
Lehks Avatar asked Mar 03 '20 08:03

Lehks


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.

Why do we write C?

We write C for Carbon Because in some element the symbol of the element is taken form its first words and Co for Cobalt beacause in some elements the symbol of the element is taken from its first second letters, so that the we don't get confuse.


1 Answers

Unary ^ is the "index from end" operator, introduced in C# 8.0. choices[^1] is equivalent to choices[choices.Length - 1].

See the official documentation for additional details.

like image 125
Mureinik Avatar answered Sep 27 '22 16:09

Mureinik