5
votes
7answers
466 views
Is the order of objects returned by FOREACH stable?
Is it safe to assume that two itterations over the same collection will return the objects in the same order? Obviously, it is assumed that the collection has not otherwise been changed.
…
0
votes
A way of casting a base type to a derived type
This will work:
SomeBaseClass class = new SomeDerivedClass();
SomeDerivedClass derClass = (SomeDerivedClass)class;
Although this example is not too interesting, th …
1
vote
Do Strongly Typed Datasets improve performance?
Strongly typed DataSets are just a strongly typed wrapper over the same untyped DataSet that you would otherwise use. With the assumption that you would use the untyped DataSet in a reasonable, ef …
