Saves a buffer to a file located on a disk.
Syntax
| Visual Basic (Declaration) | |
|---|
Overrides Public Sub SaveData( _
ByVal data() As Byte _
) |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As FileBinaryData
Dim data() As Byte
instance.SaveData(data)
|
| C# | |
|---|
public override void SaveData(
byte[] data
) |
| C++/CLI | |
|---|
public:
void SaveData(
array<byte>^ data
) override |
Parameters
- data
-
The input buffer to be saved to a file.
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also