Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6190445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T02:35:27+00:00 2026-05-24T02:35:27+00:00

I noticed something that seems odd in the following code: MatchCollection mc = Regex.Matches(myString,

  • 0

I noticed something that seems odd in the following code:

MatchCollection mc = Regex.Matches(myString, myPattern);
foreach(var match in mc)
    Console.WriteLine(match.Captures[0]); // <-- this line is invalid, unless I replace 'var' above with 'Match'

The variable match is of type Object rather than Match. I am used to enumerating collections using var with no issues like this. Why is MatchCollection different?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T02:35:28+00:00Added an answer on May 24, 2026 at 2:35 am

    MatchCollection was written before .NET 2, so it just implements IEnumerable rather than IEnumerable<T>. However, you can use Cast to fix this very easily:

    foreach(var match in mc.Cast<Match>())
    

    If you give the variable an explicit type, like this:

    foreach(Match match in mc)
    

    … then the C# compiler inserts a cast on each item for you automatically. This was required in C# 1 to avoid having casts all over your code.

    (Logically even with var there’s a conversion involved – but it’s always from one type to the same type, so nothing actually needs to be emitted.) See section 8.8.4 of the C# 4 spec for more details.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using Wireshark and I noticed that my plugin seem to track
I provided a searchform.php in my theme. I noticed that when I search for
I am writing a parser for quite complicated config files that make use of
Objectify (2.2.3) seems to not want to handle @Embedded lists of strings, although all
Let's say, a javascript tag's src attribute points to a redirect: <script src=http://foo.com/foo.js></script> where
I know a little bit of comprehensions in Python, but they seem very hard
I have a form where an user can post a global notice into the
I am having a weird issue with VS 2008 when I go to debug
A canonical example of patching up an otherwise covariant class is as follows: abstract
I am using ASP.NET MVC2 in Visual Studio 2008. I believe the SQL Server

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.