gpt4 book ai didi

c# - 在参数 c# 中使用 this 关键字

转载 作者:太空狗 更新时间:2023-10-30 00:40:22 26 4
gpt4 key购买 nike

<分区>

我有一个类:

public static class PictureBoxExtensions
{
public static Point ToCartesian(this PictureBox box, Point p)
{
return new Point(p.X, p.Y - box.Height);
}

public static Point FromCartesian(this PictureBox box, Point p)
{
return new Point(p.X, box.Height - p.Y);
}
}

我的问题是 PictureBox 前面的 this 关键字有什么用,而不是省略关键字?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com