This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The CSV file produced by Relenta while exporting contact is somewhat messy. | |
// Using this tiny app to extract the first email address of each contact. | |
using System; | |
using System.IO; | |
namespace ConsoleTest | |
{ | |
class Program | |
{ |
NewerOlder