public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//this Error
public static Image resizeImage(this Image imgToResize, Size size)
{
return (Image)(new Bitmap(imgToResize, size));
}
질문>
resizeImage(this Image imgToResize, Size size)에서 this를 빼면 에러가
위 에러가 안납니다
그런데 this를 써야 되는 경우가 혹시 있나요?
[최초 등록일: ]
[최종 수정일: 4/6/2023]