if (Console.CursorTop=3 && Console.CursorLeft==7) {
Console.WriteLine();
}
エラーがあります
Error 1 Operator '&&' cannot be applied to operands of type 'int' and 'bool'
なぜ機能しないのですか?
if (Console.CursorTop=3 && Console.CursorLeft==7) {
Console.WriteLine();
}
エラーがあります
Error 1 Operator '&&' cannot be applied to operands of type 'int' and 'bool'
なぜ機能しないのですか?
そうですか(二重の等号に注意してください)
Console.CursorTop == 3
それ以外の場合は割り当てです。
構文を修正し、=3 を ==3 に置き換えます
if (Console.CursorTop==3 && Console.CursorLeft==7)
{
Console.WriteLine();
}
CursorTop を 3 と比較しようとしている場合は、if (Console.CursorTop==3 && Console.CursorLeft==7)
C# では、2 つの値の比較に = は使用されません。2 つの値を比較するには、ステートメントに == を入れる必要があります。
if (Console.CursorTop**==**3 && Console.CursorLeft==7) {
Console.WriteLine();
}