-3

I saw string[,] in one of my client's c# project.

What does the code mean? Also, I noticed that I couldn't search it by popular search engines such as Google, GitHub search, and even the StackOverflow. How could I search a keyword which contains string[,]

public static Dictionary<string, string[,]> bigtabledic = new Dictionary<string, string[,]>();
Wildan Muhlis
  • 1,553
  • 2
  • 22
  • 43
  • 2
    [Multidimensional Arrays](https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/arrays/multidimensional-arrays) – Pavel Anikhouski May 13 '20 at 08:16
  • 1
    It's a two-dimentional string array. https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/arrays/multidimensional-arrays – Sami May 13 '20 at 08:16
  • *"How could I search a keyword which contains string[,]"* - you have to search for question which ask exactly that question first ;) [Click](https://stackoverflow.com/q/4685615/1997232) and [here](http://symbolhound.com/?q=c%23+%5B%2C%5D) are results. – Sinatr May 13 '20 at 08:38

1 Answers1

4

String [,] is a two dimenstional array consisting of string objects.

The code says the following: Create key value pairs of a string as a key and a two-dimensional string array as a value.

Alexei Levenkov
  • 98,904
  • 14
  • 127
  • 179
Iliass Nassibane
  • 651
  • 7
  • 15