Month: August 2006

  • Using explicit functions from your Interface in C#

    I was just wondering what the difference was in using implicit or explicit functions when implementing an interface in C# For example we have a CarService class which inherits from an interface…. Class CarService : ICarService Than, an implicit methodheader in the CarService class might look like:Public List<Car> GetCars(CarType carType) while an explicit methodheader looks…