Created
October 19, 2012 01:43
-
-
Save masaru-b-cl/3915804 to your computer and use it in GitHub Desktop.
多次元配列の要素列挙
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var a = new int[,] { { 1, 2, 3 }, { 4, 5, 6 } }; | |
foreach (var i in a) | |
{ | |
Console.WriteLine(i); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment