JAVA代码如何翻译成C#
public class Main {
public static void main(String[] args) {
List<Byte> thumbList = new ArrayList<>();
Integer int_date= 175;
byte a = int_date.byteValue();
thumbList.add(a);
System.out.println(a);
Integer int_date2= 203;
byte b = int_date2.byteValue();
thumbList.add(b);
System.out.println(b);
Integer int_date3= 42;
byte c = int_date3.byteValue();
thumbList.add(c);
System.out.println(c);
}
}
JAVA的输出结果是
-81
-53
42
换成C#怎么写。。C#没有Integer 请帮忙翻译成C# 谢谢