So, I have this program that has a constructor with the inputs as DateTime.
But whenever I try to create the object of that Class, and pass the DateTime as argument, the
Your class takes a DateTime as a argument, not three integers. Try this:
var myprogram = new Student(new DateTime(1995,04,29));