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 924041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:17:15+00:00 2026-05-15T19:17:15+00:00

I am trying to set the array keys as a strings like in the

  • 0

I am trying to set the array keys as a strings like in the example below, but inC#.

<?php
$array = array();
$array['key_name'] = "value1";
?>
  • 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-15T19:17:16+00:00Added an answer on May 15, 2026 at 7:17 pm

    The closest you get in C# is Dictionary<TKey, TValue>:

    var dict = new Dictionary<string, string>();
    dict["key_name"] = "value1";
    

    Note that a Dictionary<TKey, TValue> is not the same as PHP’s associative array, because it is only accessible by one type of key (TKey — which is string in the above example), as opposed to a combination of string/integer keys (thanks to Pavel for clarifying this point).

    That said, I’ve never heard a .NET developer complain about that.


    In response to your comment:

    // The number of elements in headersSplit will be the number of ':' characters
    // in line + 1.
    string[] headersSplit = line.Split(':');
    
    string hname = headersSplit[0];
    
    // If you are getting an IndexOutOfRangeException here, it is because your
    // headersSplit array has only one element. This tells me that line does not
    // contain a ':' character.
    string hvalue = headersSplit[1];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to learn about php's arrays today. I have a set of arrays like
Hi I'm trying to loop through a array and set a keys value. Very
I'm trying to set array values in UITableViewCell at cellAtRowIndexPath - method, but it's
I'm trying to set up an array through jQuery's .each() function, but it seems
I'm trying to use an array to set the where parameters for a Zend
Can PHP dissect its own syntax? For example, I'd like to write a function
I am trying to set up links in an array so I have: <a
I'm trying to set properties of some elements through a for loop, but am
Explanation One array holds a set of keys. The values to these keys are
I am trying to set a negative zero to an array in two ways.

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.