İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS1107

Bir parametrenin yalnızca bir 'değiştirici adı' değiştiricisi olabilir.

, ref, inve out gibi thisparametre değiştiricilerinin parametre tanımında birden fazla kez görünmesi hatadır.

Örnek

Aşağıdaki örnek CS1107 oluşturur:

// cs1107.cs  
public static class Test
{
    // Extension methods.  
    public static void TestMethod(this this int t) { } // CS1107

}

public class TestTwo
{
    // Regular Instance Method  
    public void TestMethod(ref ref int i) { } // CS1107  

    // Regular Instance Method  
    public void TestMethod(in in double d) { } // CS1107  
}