AsExtensions.AsStream Method (Byte[])

Tungsten Suite

AsExtensionsAsStream Method (Byte)

Creates a MemoryStream object and initializes it with the specified byte array

Namespace:  W
Assembly:  Tungsten.As (in Tungsten.As.dll) Version: 2.0.1
Syntax
C#
public static MemoryStream AsStream(
	this byte[] this
)

Parameters

this
Type: SystemByte
The byte array used in creating the MemoryStream

Return Value

Type: MemoryStream
A new MemoryStream initialized with the specified byte array

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also