First try
This commit is contained in:
23
VIN-LIB/ConsoleApp1/Program.cs
Normal file
23
VIN-LIB/ConsoleApp1/Program.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VIN_LIB;
|
||||
|
||||
namespace ConsoleApp1
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
|
||||
string vin = "Z9MCM56557C404453";
|
||||
if (VIN_LIB.VIN.CheckVIN(vin))
|
||||
Console.WriteLine("Вин годен");
|
||||
VIN_LIB.VIN.GetVINCountry(vin);
|
||||
Console.ReadLine();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user