コンパイラ エラー CS0036
out パラメーターに '[In]' a 属性を指定することはできません
現在、 In 属性は out パラメーターでは使用できません。
次の例では 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);
}
}
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET に関するフィードバック
.NET はオープンソース プロジェクトです。 フィードバックを提供するにはリンクを選択します。