Skip to content

Commit 18fc49f

Browse files
authored
Create set.cs
1 parent 488b3aa commit 18fc49f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

set.cs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System;
2+
using System.Collections;
3+
using System.Collections.Generic;
4+
using System.Linq;
5+
using System.Text;
6+
using System.Threading.Tasks;
7+
8+
namespace CSharpSet
9+
{
10+
class Program
11+
{
12+
static void Main(string[] args)
13+
{
14+
foreach (DictionaryEntry de in Environment.GetEnvironmentVariables())
15+
{
16+
Console.WriteLine("{0}={1}", de.Key, de.Value);
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)