They presented their logo in a form of a Gogol's famous nose on his 200th anniversary:

Now they present a logo in Morse code on Samuel Morse's anniversary:

What's next?
using System.Collections.ObjectModel;
using System.Runtime.Serialization;
using System.Collections.Generic;
[DataContract]
public class Entity
{
public int ID {get; set;}
public int Name {get; set;}
}
[CollectionDataContract]
public class EntityCollectionNotSupported : Collection
{
[DataMember]
public int AdditionalProperty { get; set; }
}
* This source code was highlighted with Source Code Highlighter.
[DataContract]
public class EntityCollectionWorkaround : ICollection
{
public EntityCollectionWorkaround()
{
Entities = new List();
}
[DataMember]
public int AdditionalProperty { get; set; }
[DataMember]
public List Entities { get; set; }
// Implement here ICollection,
// IEnumerable and IEnumerable members
// by wrapping Entities
}
* This source code was highlighted with Source Code Highlighter.