Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 13th, 2007, 01:52 PM
Registered User
 
Join Date: Apr 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to stokerfed Send a message via Yahoo to stokerfed
Default foreach confusion

Wait a second..!

This works:
Code:
object foo1 = _issueTypes["Bug"]; 
IssueType foo2 = (IssueType)foo1;
But this throws a cast error: !!
Code:
 
foreach(object foo1 in _issueTypes) 
{ 
   IssueType foo2 = (IssueType)foo1; 
}
Whats wrong with that?!
 
Old June 13th, 2007, 02:05 PM
Authorized User
 
Join Date: Feb 2007
Posts: 37
Thanks: 1
Thanked 0 Times in 0 Posts
Default

http://www.dotnet247.com/247referenc.../17/87239.aspx

http://www.csharphelp.com/board2/rea...=46547&t=46547

check this one may help you...

 
Old June 13th, 2007, 02:30 PM
Registered User
 
Join Date: Apr 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to stokerfed Send a message via Yahoo to stokerfed
Default

Thanks so much, I figured it out! I just needed to add .Values to the end of the hashtable name.





Similar Threads
Thread Thread Starter Forum Replies Last Post
foreach with two lists silasla C# 13 May 2nd, 2008 12:27 PM
ForEach Loop Bushido121 BOOK: Professional SQL Server 2005 Integration Services ISBN: 0-7645-8435-9 0 October 23rd, 2006 07:55 PM
hlpe with foreach(); haryohnesa PHP Databases 1 August 3rd, 2006 12:46 PM
"foreach" error BradBrening Pro PHP 2 January 13th, 2005 05:33 PM
Need help with foreach loop Arsi C# 3 September 7th, 2004 09:41 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.