单项选择题

执行下列代码,如果在控制台输入123,以下描述正确的是()。
int x;
x=Console.ReadLine();

A.报错,无法将string类型隐式转换为int
B.报错,无法将int类型隐式转换为string
C.x的值是整形123
D.x的值是字符串"123"