Projects tagged ‘csharp’ and ‘serialization’


Jump to tag:

Projects tagged ‘csharp’ and ‘serialization’

Filtered by Project Tags csharp serialization

Refine results Project Tags .net (4) dotnet (3) xml (2) reflection (1) ilist (1) stream (1) list (1) access (1) xmlserializable (1) 3_0 (1) encryption (1) serialize (1)

[8 total ]

0 Users

YamlSerializer serializes arbitrary .NET native objects into YAML text. It can also manipulates a generic YAML documents. YamlSerializer は任意の .NET のオブジェクトを YAML ... [More] ドキュメントにシリアライズすることができます。もちろん一般的な YAML ドキュメントも読み書きできます。 [Less]
Created 3 months ago.

0 Users

Welcome to the CSharpTest.Net code libraryProject Home: http://csharptest.net Status: Ready for use PurposeProvide an open source code library for basic needs not met by the core .Net Framework ... [More] infrastructure. Demonstrate a real-world example of keeping code simple by design. Show proven best-practices of delivering solid code with coverage-based testing. LibrariesCSharpTest.Net.Logging - A fully-functional logging system for .Net applications. Provides ASP.Net trace and diagnostic trace output as well as rolling log files. Attach an event for even more flexibility. Simple by design and extremly fast and fault tolerant. Utility ClassesShared/ArgumentList.cs - a command-line program argument parser that exposes named items (i.e. /name=value or -name:value) and unnamed items in an easy to use collection format. I invariably rely on this utility when witting command-line tools. Shared/Check.cs - another very simple tool used to assert argument input to a method. It includes just the basics and can expanded to your needs. The default static methods NotNull, NotEmpty, and IsEqual are used to make the assertions and generate appropriate exceptions. Shared/Configuration.cs - contains a templated base class used to implement a basic System.Configuration.ConfigurationSection. The class simply uses an XmlSerializer for the type argument specified and deserializes while validating against an XSD file. Essentially this circumvents much of the system configuration mechanics and complexities to ease the development. Shared/FileList.cs - a simple file enumeration class that can be used to easily find sets of files. Provide it a list of directory and/or file names and simply let it figure it out. It will raise an event for custom filter or has some simple attribute-level filtering built-in. Shared/QuickLog.cs - an EXTREMELY basic implementation of a logging API. Easy to extend by implementation of an event but sufficient to use by itself for some needs. It's own API can be used directly or all calls to System.Trace.Write(...) will also be directed to the current output log file. The log does not roll until the application is restarted at which time the old log is renamed to '.bak' to maintain one historical log. [Less]
Created 9 months ago.

0 Users

an auto System.Xml.XmlSerializer for List that can work a/synchronous agains the Xml file
Created 11 months ago.

0 Users

SummaryJsonExSerializer is a serializer/deserializer framework for C# that uses JSON format for its storage format. A small number of extensions are added to facilitate correct reconstruction of the ... [More] object upon deserialization. It is mainly intended to serialize objects to and from a storage medium, but it fully supports being used in an AJAX/web environment as well. See the SetJsonStrictOptions on the extensions page for how to turn off the extensions if transmitting to a browser. See the Tutorial and Usage pages for examples on how to use it. Why?I wanted a framework that I could use to persist objects to disk. I also wanted something that was human readable and easy to edit. Binary serialization is not human readable, and I didn't want to use xml because I found it too verbose for this purpose. I examined a few other JSON packages, but found nothing that could recreate the object graph exactly as it was deserialized. Especially if normal OO techniques such as inheritance were used. None of the implementations could handle references as well, which was pretty important to me. FeaturesEasy to use: Serialize an object in about 2-3 lines of code. Deserialize objects exactly as you serialized them with References intact Supports classes, structs, Generics, properties and public fields Support for constructors with arguments Serialization can be controlled programmatically, with .NET attributes, or using app.config Easy customization, just create a different object to serialize which could be a Dictionary, String, ArrayList or any other type that you choose Formatted output by default so its easy to read, or you can serialize it compactly if you choose Can be customized to use your own factories or dependency injection frameworks when constructing objects IssuesBug reports can be submitted to the issue log. Issues or questions about JsonExSerializer can be posted to the JsonExSerializer discussion group. News3.1 is in the works and should be released soon. Check the blog for the new features that will be going in. Moved the blog from blogspot to wordpress. Should make it easier to post code samples Release 3.0 is the latest stable release. See ReleaseNotes for more details. It provides much greater capability for customization over the previous release as well as some key bug fixes for internalization issues. See the wiki for more Usage and explanation of features. [Less]
Created about 1 year ago.

0 Users

A KML library that uses XML Serialization to load and save KML documents to/from files. All KML classes will be represented using real C# objects that work with the standard XmlSerializer. This ... [More] approach differs from other approaches that use string parsing or DOM manipulation and tends to be more object-oriented. [Less]
Created about 1 year ago.

0 Users

.NET assemblies intended for serialization, encryption and signing of objects to be sent over a network. Currently extremely unpolished and untested.
Created 12 months ago.

0 Users

An extendable custom serialization library in c#. Xml and Binary serializers implemented by default.
Created 12 months ago.

0 Users

Simple C# class libary that provides random access to a stream of typed binary serialized records. Efficient, LINQ friendly and supports .NET 3.0.
Created 4 months ago.