473,799 Members | 2,761 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

I bug in the for each loop statement?

Is this a bug in the for each loop or am I coding something wrong (or is this
how its suppose to function and I don't understand how an array property and
the for each interact [this is always a possibility :)]

The commented out code is the problem area as it generates the error:
->for each statement cannot operate on variables of type 'overloaded-function'

using namespace System;

ref class ArrayProp
{
public:
ArrayProp(int size)
{
numArray = gcnew array<int>(size );
}

property array<int>^ NumArray
{
array<int>^ get()
{
return numArray;
}

void set ( array<int>^ value )
{
numArray = value;
}
}
private:
array<int>^ numArray;
};

void main()
{
ArrayProp aprop(5);

for ( int i = 0 ; i < aprop.NumArray->Count ; ++i )
aprop.NumArray[i] = i;

for ( int i = 0 ; i < aprop.NumArray->Count ; ++i )
Console::WriteL ine(aprop.NumAr ray[i]);

// for each (int i in aprop.NumArray)
// {
// Console::WriteL ine(i);
// }
}

Nov 17 '05 #1
1 879
Hello Stephen,

there are more appropiate groups on privatenews.mic rosoft.com for the VS
8 Beta.
Is this a bug in the for each loop or am I coding something wrong (or is this
how its suppose to function and I don't understand how an array property and
the for each interact [this is always a possibility :)] [...] // for each (int i in aprop.NumArray)
// {
// Console::WriteL ine(i);
// }
}

this looks (didn't actually test it) like the bug described here
http://blogs.msdn.com/arich/. So it's a compiler bug, nothing you're
doing wrong.

Workaround is to explicitly call the property accessor.

hth
--
Ben
http://bschwehn.de
Nov 17 '05 #2

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

Similar topics

5
5002
by: Orin Hargraves | last post by:
I'm formatting data in a text file using a "For Each aPara" statement along with a "Next aPara." How do I make the thing stop when it reaches the end of the file, rather than starting again at the top of the file and looping forever? Thanks, I'm new at this. Orin Hargraves
80
5076
by: | last post by:
Is there a performance difference between this: \\\ Dim i As Integer For i = 0 to myObject.Controls.Count - 1 myObject.Controls(i) = ... Next /// and this:
3
3057
by: deko | last post by:
Problem: why doesn't this With block work? is it possible to have a For Each loop within a With block? With objWord .Documents.Add Template:=strTemplate, NewTemplate:=False, DocumentType:=0 For Each varBookmark In Array("ReturnAddress", "NameAddressBlock", "Salutation", "FullName") If DLookup(varBookmark, "tblTemplate", "template_ID = " & strTid) = -1 Then
8
1276
by: Belee | last post by:
I have the following code and it is not passing through the Next statement: Private Function IsItemAlreadyAdded() As Boolean Dim drMyRow As DataRow With Me For Each drMyRow In .dsTOB.Tables("TempOB").Rows If .acctNumber = drMyRow("AccountNo") Then Return True Else
3
3530
by: Ben R. | last post by:
In an article I was reading (http://www.ftponline.com/vsm/2005_06/magazine/columns/desktopdeveloper/), I read the following: "The ending condition of a VB.NET for loop is evaluated only once, while the C# for loop ending condition is evaluated on every iteration." Is this accurate? I don't understand how you could get away without evaluating the ending condition at every iteration. Otherwise, how would you
6
1880
by: Teddy.Gammell | last post by:
Hi, I would like to write a function which does this: for each element in the list call f1() of each element. if f1() return false, break the loop else continue I try to use the for_each() algorithm, but it does not let me stop the
14
19950
by: Drew | last post by:
I need to iterate through a submitted form, inserting data on each pass. In the past, I have always used form elements that were named with numbers at the end, like this, name1 relationship1 name2 relationship2 name3 relationship3 With the above formatting, I could write a For... Next loop to insert all the data into my database,
13
2043
by: cj | last post by:
When I running a loop: For Each File As System.io.FileInfo In FileInfo Is there a way to tell which file number (index) I'm currently on? Actually I'd like the ability to skip to a particular index--either forward or back. It'd be nice to be able to set the index back or forward with a command button perhaps and the loop just move to that position and continue forward from there. I'm specifically interested in doing this in the for...
1
2647
by: ll | last post by:
Hi all, I've inherited a site and am currently looking to redesign a page that displays a table of course curriculum, with each row representing a "Topic" of the curriculum. There is a courseID that exists throughout the site, identifying each course. Within each row of the aforementioned table, there are 4 columns, consisting of MainTopics, their associated SubTopics, uploaded LectureNotes for that MainTopic, and finally a DeleteRow...
0
10485
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
10252
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...
1
10231
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10027
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
9073
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
7565
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
5463
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
3759
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2938
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.