C
cartoper
I am coming to VB.Net from C#. One feature I really like about C# is
the yield contextual keyword. Here is what MSDN says about it:
--------------
Used in an iterator block to provide a value to the enumerator object
or to signal the end of iteration. It takes one of the following forms:
yield return expression;
yield break;
the yield contextual keyword. Here is what MSDN says about it:
--------------
Used in an iterator block to provide a value to the enumerator object
or to signal the end of iteration. It takes one of the following forms:
yield return expression;
yield break;