Last active
December 14, 2015 15:19
-
-
Save anakahala/5106536 to your computer and use it in GitHub Desktop.
[["a"]["b"]["c"]]←こんなstring[][]配列から、["a", "b", "c"]←こんなstring[]配列にする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| string[][] array = new string[][] { new string[] { "a" }, new string[] { "b" }, new string[] { "c" } }; | |
| string[] select = array.Select(v => v[0]).ToArray(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment