Błąd kompilatora CS0036
Parametr out nie może mieć atrybutu "[In]"
Obecnie atrybut In nie jest dozwolony dla parametru out.
Poniższy przykład generuje CS0036:
// CS0036.cs
using System;
using System.Runtime.InteropServices;
public class MyClass
{
public static void TestOut([In] out char TestChar) // CS0036
// try the following line instead
// public static void TestOut(out char TestChar)
{
TestChar = 'b';
Console.WriteLine(TestChar);
}
public static void Main()
{
char i; //variable to receive the value
TestOut(out i); // the arg must be passed as out
Console.WriteLine(i);
}
}
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Opinia o produkcie .NET
.NET to projekt typu open source. Wybierz link, aby przekazać opinię: