Difference between revisions of "API:IOUtils"
From Kerbal Space Program Wiki
m (N3X15 moved page IOUtils to API:IOUtils) |
|
(No difference)
|
Revision as of 20:39, 5 October 2012
KSP.IO Namespace
BinaryReader ·
BinaryWriter ·
File ·
FileInfo ·
FileStream ·
IOException ·
IOTools ·
IOUtils ·
MemoryStream ·
PluginConfigNode ·
PluginConfiguration ·
TextReader ·
TextWriter
IOUtils Class
Has some useful little tools and utilities.
Methods
The following are methods included in IOUtils.
Signature | Description |
---|---|
static object DeserializeFromBinary(byte[] input) | Deserialize a binary serialized object |
static byte[] SerializeToBinary(object something) | Serialize an object (same as using a BinaryFormatter). |
static string GetFilePathFor(Type T, string file, Vessel flight = null) | Return the full path for a given filename, provided a class from the plugin. PluginData/[.flights/FLIGHT_UUID/]assemblyname/file |