コード例 #1
0
        private static void Main()
        {
            Thread.CurrentThread.CurrentCulture   = CultureInfo.InvariantCulture;
            Thread.CurrentThread.CurrentUICulture = CultureInfo.InvariantCulture;

            //CsvExample.ReadingAndWritingCsv();
            VCardExample.ReadingAndWritingVCard();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: FolkerKinzel/VCards
    private static void Main()
    {
        Thread.CurrentThread.CurrentCulture   = CultureInfo.InvariantCulture;
        Thread.CurrentThread.CurrentUICulture = CultureInfo.InvariantCulture;


        string directoryPath = Path.GetFullPath("TestFiles");

        if (Directory.Exists(directoryPath))
        {
            Directory.Delete(directoryPath, true);
        }

        _ = Directory.CreateDirectory(directoryPath);


        //WhatsAppDemo1.IntegrateWhatsAppNumberUsingIMPP();
        //WhatsAppDemo2.UsingTheWhatsAppType();
        VCardExample.ReadingAndWritingVCard(directoryPath);
        //VCard40Example.SaveSingleVCardAsVcf(directoryPath);
    }