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

Usage of this keyword inside parameter c#

我有一个 class:

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 关键字有什么用,而不是省略关键字?

此 class 包含扩展方法。

this关键字表示该方法是一个扩展。所以你的例子中的方法 ToCartesian 扩展了 PictureBox class,这样你就可以写:

PictureBox pb = new PictureBox();
Point p = pb.ToCartesian(oldPoint);

有关扩展方法的更多信息,请参阅 MSDN 上的文档:https://msdn.microsoft.com/en-us/library/bb383977.aspx

扩展方法的调用方式类似于实例方法,但实际上是静态方法。实例指针"this"是一个参数。

并且: 您必须在要调用该方法的适当参数之前指定 this-关键字。

public static class ExtensionMethods
{
    public static string UppercaseFirstLetter(this string value)
    {
        // Uppercase the first letter in the string this extension is called on.
        if (value.Length > 0)
        {
            char[] array = value.ToCharArray();
            array[0] = char.ToUpper(array[0]);
            return new string(array);
        }
        return value;
    }
}

class Program
{
    static void Main()
    {
        // Use the string extension method on this value.
        string value = "dot net perls";
        value = value.UppercaseFirstLetter(); // Called like an instance method.
        Console.WriteLine(value);
    }
}

有关详细信息,请参阅 http://www.dotnetperls.com/extension

**编辑:通过评论一次又一次地尝试下面的示例

pb.Location=pb.FromCartesian(new Point(20, 20)); 

查看结果**

using System;
using System.Drawing;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            PictureBox pb = new PictureBox();
            pb.Size = new Size(200, 200);
            pb.BackColor = Color.Aqua;
            pb.Location=pb.FromCartesian(new Point(20, 20));
            Controls.Add(pb);
        }
    }

    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);
        }
    }
}