I have a problem when trying to get a specific day with the DateTime property of C #, since it only brings me one number and it is always the 1st.
Date method code
var fecha = DateTime.Now.ToString("d/M/yyyy");
DateTime moment = new DateTime();
int dia = moment.Day;
MessageBox.Show(Convert.ToString(dia), "Error Title", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
and the result is as follows: