Search Results

-1
votes

Getting all types that implement an interface with C# 3.5

You could use some LINQ to get the list: var types = from type in this.GetType().Assembly.GetTypes() where type is ISomeInterface select type; …
2
votes

Optimizing for low bandwidth

I would suggest you look into Silverlight and DeepZoom …