What is it? in the code that cause the Editor to die? Try putting in a newline after "Exts" and it dies.

Module Module1

Sub Main()

End Sub

End Module
Public Module Exts
 Private Iterator Function GenerateAscending(Of T As IComparable(Of T))(s As T, f As T, fn As Func(Of T, T), Optional inc As Boolean = True) As IEnumerable(Of T)
  Dim curr = s
  While curr.CompareTo(f) <= 0
   Yield curr
   curr = fn(curr)
  End While
  If inc Then Yield curr
 End Function
End Module
link|improve this question

43% accept rate
1  
Assuming that your talking about VS 2011, which is currently in developer preview (last I looked), this is more appropriate to report to MS as a bug, IMO. – Tim Jan 30 at 23:24
feedback

closed as too localized by Dan Abramov, Mr. Disappointment, Tim, Book Of Zeus, minitech Jan 31 at 2:22

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.