Guest User

Untitled

a guest
Jul 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class MeterToKiloConverter : IValueConverter
  2. {
  3. public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
  4. {
  5. throw new NotImplementedException();
  6. }
  7. public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
  8. {
  9. throw new NotImplementedException();
  10. }
  11. }
Add Comment
Please, Sign In to add comment