17 lines
361 B
C#
17 lines
361 B
C#
using System;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Lab4.RemoveComments
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
const string CFd = "Duomenys.txt";
|
|
const string CFr = "Rezultatai.txt";
|
|
const string CFa = "Analize.txt";
|
|
InOut.Process(CFd, CFr, CFa);
|
|
}
|
|
}
|
|
}
|