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

  • Home
  • SEARCH
  • 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

While processing multiple gigabyte files I noticed something odd: it seems that reading from
I've noticed that PHPmyAdmin creates the following SQL for table creation: CREATE TABLE something
I saw this in some code: $(<p/>).append(<div>something</div>).appendTo(body); and noticed that it automatically closed the
So I've been playing around with python and noticed something that seems a bit
While testing some HTTP server code, I noticed something odd: if I return Content-Type:
I am relatively new to C#, and I noticed something interesting today that I
Something that I've noticed recently on two different machines is that Apache2 installed via
I've noticed something about my coding that is slightly undefined. Say we have a
I noticed that some stylesheets have something like this: body { font-size: 62.5%/1.2em; }
I noticed that when you call a superclass's methods, you need to do something

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.