File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -261,3 +261,6 @@ paket-files/
261
261
# Python Tools for Visual Studio (PTVS)
262
262
__pycache__ /
263
263
* .pyc
264
+ /Chunk List /Presentation /Chunk List Backup.pdf
265
+ /.vscode
266
+ /Chunk List /Presentation /Chunk List-review01092019.pdf
Original file line number Diff line number Diff line change @@ -434,6 +434,17 @@ public T get(int index)
434
434
return get ( index + 1 ) ;
435
435
}
436
436
}
437
+
438
+ /// <summary>
439
+ /// Override indexer operator (get or set element at specified index)
440
+ /// </summary>
441
+ /// <param name="index"></param>
442
+ /// <returns></returns>
443
+ public T this [ int index ]
444
+ {
445
+ get { return get ( index ) ; }
446
+ set { set ( index , value ) ; }
447
+ }
437
448
438
449
/// <summary>
439
450
/// Prints out all items currently in list, in order by chunk
You can’t perform that action at this time.
0 commit comments