Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,111 questions

40,781 answers

573 users

How to use yield to return multiple elements from a function one at a time in VB.NET

1 Answer

0 votes
Imports System
Imports System.Collections.Generic

Public Class Program
    Public Shared Iterator Function Get_Fibonacci_Sequence(ByVal total As Integer) As IEnumerable(Of Integer)
        Dim returnValue As Integer = 1, prev As Integer = 0

        For i As Integer = 0 To total - 1
            Yield returnValue
            Dim temp As Integer = returnValue
            returnValue = prev + returnValue
            prev = temp
        Next
    End Function

    Public Shared Sub Main()
        For Each i As Integer In Get_Fibonacci_Sequence(11)
            Console.Write("{0} ", i)
        Next
    End Sub
End Class




' run:
'
' 1 1 2 3 5 8 13 21 34 55 89
'

 





answered Aug 3, 2022 by avibootz

Related questions

4 answers 1,316 views
1 answer 75 views
1 answer 75 views
1 answer 44 views
...