2 writes to _rowsArray
System.Web (2)
UI\WebControls\GridView.cs (2)
1163
_rowsArray
= new ArrayList();
2029
_rowsArray
= new ArrayList(rowsArrayCapacity);
10 references to _rowsArray
System.Web (10)
UI\WebControls\GridView.cs (10)
1159
if (
_rowsArray
== null) {
1162
if (
_rowsArray
== null) {
1165
_rowsCollection = new GridViewRowCollection(
_rowsArray
);
1235
if (
_rowsArray
!= null) {
1238
if ((oldSelectedIndex != -1) && (
_rowsArray
.Count > oldSelectedIndex)) {
1239
row = (GridViewRow)
_rowsArray
[oldSelectedIndex];
1243
if ((value != -1) && (
_rowsArray
.Count > value)) {
1244
row = (GridViewRow)
_rowsArray
[value];
2194
_rowsArray
.Add(row);
2256
_rowsArray
.Add(row);