C#
List<int> integ = new List<int>(){100,200,300,400,500};
IList<int> noModif = integ.AsReadOnly();
foreach (var i in noModif)
{
// print i
}
try
{
noModif.Add(600);
}
catch(Exception ex)
{
// Exception raised stating that this collection is read only
}
VB.NET
Dim integ As New List(Of Integer)(New Integer() {100, 200, 300, 400, 500})
Dim noModif As IList(Of Integer) = integ.AsReadOnly()
For Each i In noModif
' print i
Next i
Try
noModif.Add(600)
Catch ex As Exception
' Exception raised stating that this collection is read only
End Try
Tweet
1 comment:
This is not LINQ. Method AsReadOnly is defined on List<T>.
Post a Comment