Error del compilador CS0036
Un parámetro Out no puede tener un atributo '[In]'
Actualmente, el atributo In no se permite en un parámetro Out .
El ejemplo siguiente genera la advertencia 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);
}
}
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.
Comentarios de .NET
.NET es un proyecto de código abierto. Seleccione un vínculo para proporcionar comentarios: