[]
Loads data from the specified ICO file.
public void Load(string path)
Public Sub Load(path As String)
Type | Name | Description |
---|---|---|
string | path | Path to the ICO file. |
Loads data in ICO format from a byte array.
public void Load(byte[] bytes)
Public Sub Load(bytes As Byte())
Type | Name | Description |
---|---|---|
byte[] | bytes | The source data in ICO format. |
Loads data in ICO format from a stream.
public void Load(Stream stream)
Public Sub Load(stream As Stream)
Type | Name | Description |
---|---|---|
Stream | stream | The source stream with data in ICO format. |