Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          interfaces/reproductions/IFormattable.cs - A reproduction of the interface IFormattable.Lecture 8 - slide 17 : 37
Program 1

using System;

public interface IFormattable{
  string ToString(string format, IFormatProvider formatProvider);
}