tình hình là mình đang học c# mình không hiểu đoạn này
public static implicit operator Fraction(int theInt )
{
Console.WriteLine(" In implicitconversion to Fraction");
return new Fraction(theInt );
}
public static explicit operator int(Fraction theFraction)
{
Console.WriteLine("Inexplicit conversion to int");
return theFraction.numerator / theFraction.denominator;
}
implicit operator Fraction(int theInt ) và explicit operator int(Fraction theFraction) là gì?
Cảm ơn mọi người 
.
.
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?