You can deserialise .NET-serialised data on Linux if you have a .NET CLI implementation, such as Mono or DotGNU. This way you would be able to write a C# wrapper to handle the deserialisation then, as Brian stated above, reserialise using XML if you want to use the data in a non .NET application.
For .NET, the necessary namespaces and classes are:
BinaryFormatter and FileStream classes:
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
System.IO.FileStream
To deserialise, create an instance of the BinaryFormatter and FileStream classes, loading the serialised data into the FileStream. Then call Deserialize on the BinaryFormatter and cast into the necessary data type (I've called it TheClass below):
BinaryFormatter formatter = new BinaryFormatter();
FileStream file = File.OpenRead(@"InsertFileName");
TheClass classInstance = (TheClass)formatter.Deserialize(file);
file.Close();
XML serialisation using raw XML or SOAP is more interoperable with non .NET apps. SOAP serialisation is available using the SoapFormatter class:
System.Runtime.Serialization.Formatters.Soap.SoapFormatter
Serialisation is performed by creating FileStream and SoapFormatter instances and calling the Soapformatter Serialize method. To serialise the classInstance example above:
FileStream file = File.Create(@"InsertFileName");
SoapFormatter formatter = new SoapFormatter();
formatter.Serialize(file, classInstance);
file.Close();
Raw XML serialisation is highly customisable but works slightly differently. The XMLSerializer class is used for this purpose:
System.Xml.Serialization.XmlSerializer
To serialize TheClass using XML serialisation, you will need instances of XmlSerializer and StreamWriter (in System.IO):
XmlSerializer serializer = new XmlSerializer(typeof(TheClass));
StreamWriter xmlFile = new StreamWriter(@"InsertFileName");
serializer.Serialize(xmlFile, classInstance);
xmlFile.Close();
Once in XML, either raw or SOAP, other languages such as Java should have little difficulty reading them. For more info on XML serialisation, see this page on MSDN.
To work with .NET on Linux, the Mono Project have created an IDE called MonoDevelop which works in a similar way to Visual Studio on Windows.
I hope this infornmation is useful!