17 lines
348 B
C#
17 lines
348 B
C#
|
|
namespace Lab4.AddSurname
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
const string CFd = "Duomenys.txt";
|
|
const string CFr = "Rezultatai.txt";
|
|
string punctuation = " .,!?:;()\t'";
|
|
string name = "Arvydas";
|
|
string surname = "Sabonis";
|
|
TaskUtils.Process(CFd, CFr, punctuation, name, surname);
|
|
}
|
|
}
|
|
}
|