Appointment.Schedule C# (CSharp) Méthode

Schedule() public static méthode

public static Schedule ( string appointmentDateDescription, Location location ) : DateTime
appointmentDateDescription string
location Location
Résultat DateTime
    public static DateTime Schedule(string appointmentDateDescription, Location location)
    {
        throw new NotImplementedException("Please implement the (static) Appointment.Schedule() method");
    }

Usage Example

Exemple #1
0
 public void ScheduleDateWithTextualMonth() =>
 Assert.Equal(new DateTime(2019, 6, 3, 11, 30, 0), Appointment.Schedule("June 3, 2019 11:30:00"));
All Usage Examples Of Appointment::Schedule