Tagged Questions
The remove-method tag has no wiki summary.
11
votes
13answers
9k views
remove from a List<T> within a foreach
I have code that I want to look like this:
List<Type> Os;
...
foreach (Type o in Os)
if (o.cond)
return; // quiting early is important for my case!
else
...
0
votes
2answers
191 views
Ruby - How to remove a setter on an object
Given a class like this:
class B
class << self
attr_accessor :var
end
end
Suppose I can't modify the original source code of class B. How might I go about removing the setter ...