System.Drawing.IconLib.SEGMENT_ENTRY.Write(System.IO.Stream)

Here are the examples of the csharp api class System.Drawing.IconLib.SEGMENT_ENTRY.Write(System.IO.Stream) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: bdhero
Source File: Structs.cs
public void Write(Stream stream)
        {
            foreach(SEGMENT_ENTRY segment_entry in seg_entries)
                segment_entry.Write(stream);
        }