Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created October 19, 2012 01:43
Show Gist options
  • Save masaru-b-cl/3915804 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/3915804 to your computer and use it in GitHub Desktop.
多次元配列の要素列挙
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