Converting or casting List<sting> to List<type> in c# – Asp.net
Looking for direct way to convert/cast all elements of List<string> to a list of particular type which has one string property. Type Class with one string property: public class ClaimNumber { public string claimNumber { get; set; } } The…