c#隐式转换与显示转换

隐式转换:

sbyte num0 = 10;

int num1 = num0;

显示转换:

int num2 = 100;

sbyte num3 = (sbyte) num2;

原文地址:https://www.cnblogs.com/huangxuQaQ/p/10724436.html