Hie @Mathkar_kunal you get this error because in the parse method you put the wrong format as input this is your format 2025-01-08 and in parse method you pass like this yyyy/mm/dd so thats why it throw error the two error you are doing is
1- the parameter
2- is month
Pass this logic in your code
DateTime.ParseExact(yourValue, “yyyy-dd-MM”, System.Globalization.CultureInfo.InvariantCulture).ToString(“dd/MM/yyyy”)
cheers
