1
0
oop-1-labs/Lab4/Lab4.RemoveVowels/Program.cs

19 lines
462 B
C#

using System;
using System.Collections.Generic;
namespace Lab4.RemoveVowels
{
class Program
{
static void Main(string[] args)
{
const string CFd = "Duomenys.txt";
const string CFr = "Rezultatai.txt";
const string CFa = "Analize.txt";
const string vowels = "AEIYOUaeiyouĄąĘęĖėĮįŲųŪū";
char[] punctuation = {' ', '.', ',', '!', '?', ':', ';', '(', ')', '\t'};
TaskUtils.Process(CFd, CFr, CFa, punctuation, vowels);
}
}
}