VCF Vcard import c#
问题 iam trying to write a class which imports *.vcf files (Vcard), because i didn´t found a adequate .net class to solve that job. So i decided to treat the *.vcf file like a *.txt file. I just import the whole file, line by line, with a StreamReader. Finally i save the line into a List object. The Code: private List<string> vcardList = new List<String>(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { using (StreamReader reader = new StreamReader(