Browse by Tags

All Tags » c# » pl's (RSS)

C# Partial Specialization With Extension Methods

One of the things C# generics lacks ( compared to C++ templates) is specialization (neither explicit nor partial). This can be very useful in some cases where you want to perform something differently for a specific T in a Class<T> . With C# 3.0...
Posted by aelij | with no comments
Filed under: ,

Replacing P#

I've decided to replace P# with a great C# SWI-Prolog Interface , written by Uwe Lesta (I changed it a bit. See attachment.) The main reason for this decision was performance . P# was considerably slower, and the project had to meet certain standards...
Posted by aelij | 1 comment(s)
Filed under: , ,

The Hidden C# "Typedef"

I've just seen a blog entry about C# generics, concerning C#'s lack of typedef s. Actually, C# has a way of aliasing classes, using the using directive : using IntList = System.Collections.Generic. List < int >; IntList = System.Collections...
Posted by aelij | 7 comment(s)
Filed under: ,
More Posts