473,624 Members | 2,217 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Yield Keyword in VB.NET 2.0

What the heck - I can't find it. A bit shocked to see it missing though.

So "Does VB.NET have the yield keyword, or any equivalent of it" ?
--

- Sahil Malik [MVP]
Upcoming ADO.NET 2.0 book - http://tinyurl.com/9bync
----------------------------------------------------------------------------
Nov 17 '05 #1
54 2686
Sahil,

Please to give better posibilities to research and therefore a better
product, use this newsgroups for Net 2.0 and related products.

Lab
http://lab.msdn.microsoft.com/vs2005/community/

I hope this helps,

Cor
Nov 17 '05 #2
Cor,

I checked that place - no help there.

I must say, I am incredibly frustrated and very annoyed that something as
important as the "yield" keyword would be missed out of VB.NET.

Now try writing a SQLCLR TVF and the 3 lines it takes to accomplish it in C#
translate to 3 pages of buggy VB.NET code. Highly Highly Highly Highly
stupid to miss that out IMO.

- Sahil Malik [MVP]
Upcoming ADO.NET 2.0 book - http://tinyurl.com/9bync
----------------------------------------------------------------------------

"Cor Ligthert" <no************ @planet.nl> wrote in message
news:Ow******** ******@TK2MSFTN GP09.phx.gbl...
Sahil,

Please to give better posibilities to research and therefore a better
product, use this newsgroups for Net 2.0 and related products.

Lab
http://lab.msdn.microsoft.com/vs2005/community/

I hope this helps,

Cor

Nov 17 '05 #3
Sahil,

I think that this reaches where you are looking for. This old Visual Basic
keyword is probably one of the reasons why what is in C language called
Static is called in VBNet Shared.

http://msdn.microsoft.com/library/de...ialization.asp

I hope this helps,

Cor
Nov 17 '05 #4
Cor,

I'm not talking about "Static/Shared" .. I am talking about "Yield".
--

- Sahil Malik [MVP]
Upcoming ADO.NET 2.0 book - http://tinyurl.com/9bync
----------------------------------------------------------------------------

"Cor Ligthert" <no************ @planet.nl> wrote in message
news:uf******** ******@tk2msftn gp13.phx.gbl...
Sahil,

I think that this reaches where you are looking for. This old Visual Basic
keyword is probably one of the reasons why what is in C language called
Static is called in VBNet Shared.

http://msdn.microsoft.com/library/de...ialization.asp

I hope this helps,

Cor

Nov 17 '05 #5
>So "Does VB.NET have the yield keyword, or any equivalent of it" ?

No. Different languages have different features.

Mattias

--
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Nov 17 '05 #6
Thanks Mattias. Finally a direct answer to a simple question.

- Sahil Malik [MVP]
Upcoming ADO.NET 2.0 book - http://tinyurl.com/9bync
----------------------------------------------------------------------------

"Mattias Sjögren" <ma************ ********@mvps.o rg> wrote in message
news:uY******** *****@TK2MSFTNG P09.phx.gbl...
So "Does VB.NET have the yield keyword, or any equivalent of it" ?


No. Different languages have different features.

Mattias

--
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Nov 17 '05 #7
Sahil,
I'm not talking about "Static/Shared" .. I am talking about "Yield".

I assume that you do not know what Static is in VBNet, therefore I gave you
the link to the page.

If you want a mercedes with a chevrolet logo, than you have to put that logo
on it yourself, Mercedes does not do that for you.

However I find the Mercedes logo is not bad at all

static d as integer
For each a in b
d += 1
Next

This gives you at the end of your program the total result of loops or if
you set it conditional to zero let you go on where you was in the loop.

I am not busy with 2005, however short reading gave me the idea that this
was the idea.

I hope this helps,

Cor

Nov 17 '05 #8
Cor Ligthert wrote:
Sahil,
I'm not talking about "Static/Shared" .. I am talking about "Yield".

I assume that you do not know what Static is in VBNet, therefore I
gave you the link to the page.

If you want a mercedes with a chevrolet logo, than you have to put
that logo on it yourself, Mercedes does not do that for you.

However I find the Mercedes logo is not bad at all

static d as integer
For each a in b
d += 1
Next

This gives you at the end of your program the total result of loops
or if you set it conditional to zero let you go on where you was in
the loop.

I am not busy with 2005, however short reading gave me the idea that
this was the idea.


yield is a keyword which is only valid in custom enumerator routines
('iterators'), something which is C# 2.0 only if I'm not mistaken. It's
therefore logical VB.NET doesn't have a yield equivalent, as it doesn't
support custom iterator creation (though it's my understanding it does
support consuming them). At least, that's my understanding, but I might
have overlooked something.

Therefore, babbling about static/shared is erm... completely
irrelevant ;)

FB

--
------------------------------------------------------------------------
Get LLBLGen Pro, productive O/R mapping for .NET: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------
Nov 17 '05 #9
Sahil Malik [MVP] wrote:
What the heck - I can't find it. A bit shocked to see it missing
though.

So "Does VB.NET have the yield keyword, or any equivalent of it" ?


yield is a keyword for custom iterators, which IMHO is something
which is C# only.

However, it's not hard to work around it. After all, we all write code
today which works OK right? :)

FB

--
------------------------------------------------------------------------
Get LLBLGen Pro, productive O/R mapping for .NET: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------
Nov 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3680
by: Tobiah | last post by:
def maker(): for i in range(100): yield i foo:4: Warning: 'yield' will become a reserved keyword in the future File "foo", line 4 yield i ^ SyntaxError: invalid syntax
3
2761
by: km | last post by:
Hi all, i didnt understand the purpose of 'yield' keyword and the concept of 'generators' in python. can someone explain me with a small example how generators differ from normal function calls? kindly enlighten regards, KM
54
6899
by: Sahil Malik [MVP] | last post by:
What the heck - I can't find it. A bit shocked to see it missing though. So "Does VB.NET have the yield keyword, or any equivalent of it" ? -- - Sahil Malik Upcoming ADO.NET 2.0 book - http://tinyurl.com/9bync ----------------------------------------------------------------------------
22
2199
by: Mateuszk87 | last post by:
Hi. may someone explain "yield" function, please. how does it actually work and when do you use it? thanks in forward mateusz
2
3768
by: cartoper | last post by:
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; --------------
3
6923
by: Ehsan | last post by:
hi coulde any one show me the usage of "yield" keyword specially in this example: """Fibonacci sequences using generators This program is part of "Dive Into Python", a free Python book for experienced programmers. Visit http://diveintopython.org/ for the latest version.
0
8234
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8677
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8620
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8474
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7158
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6110
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5563
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4079
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1482
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.