﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	resolution	keywords	cc	function	customer	blocking	blockedby	due_assign	due_close	complete	estimatedhours	revision_no	last_fixed	last_closed
36	メソッドの引数にbyte[]などの配列に対して、In,Out属性を付ける	sarai		"引数に byte 配列があり、メソッド内で配列の書き換えを行っている場合、byte 配列のパラメータに `[In, Out]` 属性を付ける必要がある場合がある。

 対象::
   * 引数が byte などの配列で、メソッド内で書き換えを行っている
   * そのクラス、またはメソッドがマーシャルされる可能性がある
     * アンマネージコードの定義 (`DllImport`)
     * アプリケーションドメイン越え (`MarshalByRefObject` のサブクラス)
     * 上記の実装がされる可能性のあるインターフェース
 修正前::
{{{
Read(byte[] buffer, int offset, int length)
}}}
 修正後::
{{{
Read([In, Out] byte[] buffer, int offset, int length)
}}}
"	不具合	opened	中		Framework														
