System.Runtime.CompilerServices.FixedBufferAttribute.FixedBufferAttribute C# (CSharp) Method

FixedBufferAttribute() public method

public FixedBufferAttribute ( Type elementType, int length ) : System
elementType System.Type
length int
return System
		public FixedBufferAttribute(Type elementType, int length)
		{
			this.elementType = elementType;
			this.length = length;
		}
FixedBufferAttribute