QuickGraph


XmlWriterExtensions

Namespace: QuickGraph.Serialization

Static members

Static memberDescription
WriteArray(xmlWriter, value)
Signature: (xmlWriter:XmlWriter * value:IList<'T>) -> unit
Type parameters: 'T

Writes an array as space separated values. There is a space after every value, even the last one. If array is null, it writes "null". If array is empty, it writes empty string. If array is a string array with only one element "null", then it writes "null ".

WriteBooleanArray(xmlWriter, value)
Signature: (xmlWriter:XmlWriter * value:IList<bool>) -> unit
WriteDoubleArray(xmlWriter, value)
Signature: (xmlWriter:XmlWriter * value:IList<float>) -> unit
WriteInt32Array(xmlWriter, value)
Signature: (xmlWriter:XmlWriter * value:IList<int>) -> unit
WriteInt64Array(xmlWriter, value)
Signature: (xmlWriter:XmlWriter * value:IList<int64>) -> unit
WriteSingleArray(xmlWriter, value)
Signature: (xmlWriter:XmlWriter * value:IList<float32>) -> unit
WriteStringArray(xmlWriter, value)
Signature: (xmlWriter:XmlWriter * value:IList<string>) -> unit
Fork me on GitHub