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 )
{
私がやろうとしているのは、他のパラメーターが必要ない別の方法を用意することだけです。I bool isAccessToken は null 可能である必要があり、challengeOrToken は out パラメータである必要があります。
不正な引数エラーが発生します。
C# のこれらのパラメーター機能がよくわかりません。どんな助けでも大歓迎です。