using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.IO;
namespace AbundantcodeConsoleApp
{
internal class Program
{
private static void Main(string[] args)
{
foreach (var specialFolder in Enum.GetValues(typeof(Environment.SpecialFolder)))
{
string FolderPath = Environment.GetFolderPath((Environment.SpecialFolder)specialFolder);
Console.WriteLine(FolderPath);
}
Console.ReadLine();
}
}
}