I'm filling data in pdf with using pdfstamper.there is a birthdate i need to be fill.
with use of datetime.tostring("dd-MM-yyyy")
the date formated as shown in image.
string birthdate = lead.LeadBioData.BirthDate.Value.ToString("dd-MM-yyyy");
form.SetField("dob", birthdate);
form.SetField("dobInAlphabet", "");
the dobInAlphabet form variable for date in characters. how can i get birthdate in character as shown in image ? there is any linq method that can do that?