I am pretty new to using C# and this is my second time using it with active directory. I keep getting the error: Object reference not set to an instance of an object. Below is my code. I know that my null reference is in the line var result = searcher.FindOne(); I am unsure of what I need to do to fix this.
static void Main(string[] args)
    {
        List<string> userList = new List<string>();
        try
        {
            string[] newUsers = { List of users is here ex: jsmith@xyz.com, bsmith@xyz.com, ... };
            PrincipalContext AD = new PrincipalContext(ContextType.Domain, "xyz.com");
            UserPrincipal u = new UserPrincipal(AD);
            PrincipalSearcher search = new PrincipalSearcher(u);
            DirectorySearcher searcher = new DirectorySearcher();
            foreach (string x in newUsers)
            {
                searcher.Filter = string.Format("(&(objectCategory=person)(anr={0}))", x);
                var result = searcher.FindOne();
                userList.Add(string.Format("{0} {1}", result.Properties["DisplayName"][0].ToString(), result.Properties["Company"][0].ToString()));
                search.Dispose();
            }
            foreach(string y in userList)
            {
                Console.WriteLine(y);
            }
            Console.ReadLine();
        }
        catch (Exception e)
        {
            Console.WriteLine("Error: " + e.Message);
        }
        File.WriteAllLines(file location, userList);
    }
 
     
    