我正在查看我找到的StreamReader
的源代码 -
public override int Read([In, Out] char[] buffer, int index, int count)
{
}
请问有人可以了解第一个参数的[In , Out]
内容是什么意思吗?
答案 0 :(得分:3)
它们是具有[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
属性的目标是属性适用的实体。例如,属性可以应用于类,特定方法或整个程序集。默认情况下,属性适用于它之前的元素。但您也可以明确地识别,例如,属性是应用于方法,还是应用于其参数,还是应用于其返回值。
- 来自here
InAttribute
和OutAttribute
的定义如下:
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class InAttribute : Attribute
{
internal static Attribute GetCustomAttribute(RuntimeParameterInfo parameter)
{
return parameter.IsIn ? new InAttribute() : null;
}
internal static bool IsDefined(RuntimeParameterInfo parameter)
{
return parameter.IsIn;
}
public InAttribute()
{
}
}
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class OutAttribute : Attribute
{
internal static Attribute GetCustomAttribute(RuntimeParameterInfo parameter)
{
return parameter.IsOut ? new OutAttribute() : null;
}
internal static bool IsDefined(RuntimeParameterInfo parameter)
{
return parameter.IsOut;
}
public OutAttribute()
{
}
}
查看referencesource.microsoft.com上的here,了解有关这些属性类的更多详细信息。