public static string ChangeDeviceState(int deviceID, DeviceState nextState)
{
bool temp1;
string temp = "";
return ChangeDeviceState(deviceID, nextState, temp1, temp, "", "", "", "", "");
}
public static string ChangeDeviceState(int deviceID, DeviceState nextState, out bool? isAccessToken, out String challengeOrToken, string accessToken, string serialNumber, string MACAddress, string deviceModel, string answer )
{
我想要做的就是有另一种方法,其他参数不是必需的。我bool isAccessToken必须是可空的,challengeOrToken必须是一个out param。
我收到了非法参数错误。
我真的不明白c#中的这些参数功能。任何帮助是极大的赞赏。
答案 0 :(得分:7)
您需要在参数调用中添加out
,temp1
不是nullable boolean(bool?
)。
public static string ChangeDeviceState(int deviceID, DeviceState nextState)
{
bool? temp1;
string temp;
return ChangeDeviceState(deviceID, nextState, out temp1, out temp, "", "", "", "", "");
}