2021-09-07 19:09:57 +09:00
|
|
|
|
using ObservableCollections;
|
|
|
|
|
using System;
|
2021-08-04 09:30:34 +09:00
|
|
|
|
|
|
|
|
|
namespace ConsoleApp
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2021-09-07 19:26:57 +09:00
|
|
|
|
var oc = new ObservableList<int>();
|
2021-09-07 19:09:57 +09:00
|
|
|
|
|
2021-09-07 19:26:57 +09:00
|
|
|
|
oc.AddRange(new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }.AsEnumerable());
|
2021-09-07 19:09:57 +09:00
|
|
|
|
|
2021-08-04 09:30:34 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|