Archive for the 'C# / .NET' Category



It’s not a full example with code downloads, but here’s an example of late binding in C#, when we don’t know whether a class being bound into a DataGrid is going to be of type Article, Vacancy, Image, or whatever. I’ve found this to be a good approach when customizing a DataGrid that we can [...]

Comment

The other day I was using SOAP and C# to return an array of objects from a web service to a Flash client. On the server, each object of type SiteSectionEntity has a property ("Children") which is an IList of SiteSectionEntities. It's a pretty normal recursive structure, one level deep. My trouble was that [...]

Comments