单项选择题

现有C#方法定义为public void function1(int parameter1){…省略…},在该方法中可使用的return语句正确格式是()。

A.return 1;
B.return parameter1;
C.return function1;
D.return;