質問編集履歴

2

編集

2021/11/25 01:19

投稿

yuta3224
yuta3224

スコア2

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ```c#
12
12
 
13
- DataGridView1.Rows(0).Visible = False
13
+ DataGridView1.Rows[0].Visible = false;
14
14
 
15
15
  ```
16
16
 

1

編集

2021/11/25 01:19

投稿

yuta3224
yuta3224

スコア2

test CHANGED
File without changes
test CHANGED
@@ -38,7 +38,7 @@
38
38
 
39
39
 
40
40
 
41
- for (int i = 0; i < dataGridViewToDo.RowCount; i++)
41
+ for (int i = 0; i < dataGridView1.RowCount; i++)
42
42
 
43
43
  {
44
44