I know it doesn't exist in C# as an operator but it's not an error. What does it mean?
using System;
namespace MyApp // Note: actual namespace depends on the project name.
{
internal class Program
{
static void Main(string[] args)
{
int a = 2;
int b = 4;
int c = 5;
if (a + b!>c)
{
Console.WriteLine("abc");
}
}
}
}