Blog

Select the correct method to Fill the objects id, pers, Institute using Get() Function of Class Program

class Program {
internal static Tuple Get() {
Model model = new Model { AuthorName = “Alap”,book=”Asp.Net Core”,DateOfIssue=new DateTime(),Status= true};
return Tuple.Create(8014, model, “PAF KIET”);
}

static void Main(string[] args) {
var person = Program.Get();
int id;
Model pers;
string Institute ;
}
}