扫码下载APP
运算符是执行数学或逻辑操作的符号。
C#支持以下算术运算符:
使用示例
int x = 10; int y = 4; Console.WriteLine(x-y); //Outputs 6