What is the equivalent operator in VB.Net for ^ (this is for C#)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Xor operator is the equivalent.
The C#
^operator is:If you mean the VB.NET power operator
^:It doesn’t have a C# equivalent – you need to use
Math.Pow.There are a few lists comparing syntax and features of both languages – I like this one and this one.