以下のコードはif文の先頭にエラーを投げています。私はそれが文字配列と何かを持っていると信じていますが、なぜそれがわからないのですか?どんな助けでも大歓迎です。'オブジェクト参照がオブジェクトのインスタンスに設定されていません'エラー
public void display_bits(int count)
{
//bits that will be displayed
string[] disp_bits = new string[1000];
string[] disp_to_bits = new string[1000];
int disp_count = 0;
for (int i = 0; i <= count; i++)
{
char[] chars = { '~', '+', '*' };
if (bits[i].IndexOfAny(chars) != 0)
{
bits[i] = disp_bits[disp_count];
to_bits[i] = disp_to_bits[disp_count];
disp_count++;
}
}
}
ここで、正確にエラーがありますか? – WhatsThePoint
if(bits [i] .IndexOfAny(chars)!= 0) – Jimmy
'count'の値は何ですか? –