Что случилось, ребята!
Мне понадобится помощь!
Внутри этого кода "возврат ControllTheDog (D, _ __ _ _ )); часть" _ __ _ _"необходимо добавить со специальным кодом до-диез.
Какое решение сделать выбор между методом "NeedInjection" или / и "Dehydration" вместо " _ ___ "? Работали над поиском решения, но я до сих пор не могу его решить.
// FullmetalBoy
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1 {
public class Program
{
static void Main(string[] args)
{
Dog myDog = new Dog();
Doctor myDoctor = new Doctor();
myDoctor.GoToDoctor(myDog);
}
}
public delegate bool Validation(Dog D);
public class Doctor
{
public bool GoToDoctor(Dog D)
{
return ControllTheDog(D, ______________ ));
}
private bool ControllTheDog(Dog D, Validation ValidationControl)
{
return ValidationControl(D);
}
public bool NeedInjection(Dog D)
{
return true;
}
public bool Dehydration(Dog D)
{
return false;
}
}
public class Dog
{
}
}