Giriş
Açıklaması şöyle
Şöyle yaparız.
Açıklaması şöyle
The IFormattable interface converts an object to its string representation based on a format string and a format provider.Örnek
Şöyle yaparız.
class a : IFormattable
{
private string aa = "123";
private int bb = 5;
public string ToString(string format, IFormatProvider formatProvider)
{
return $"aa={aa} bb={bb}" ;
}
}
Hiç yorum yok:
Yorum Gönder