Some questions for a change:
At some point I got some error message while debugging a web forms project and had the option to switch off debugging for the current project, and made the sad mistake of doing this. After the original problem was resolved (something to do with IIS folder...
In view of the fact that my question below is now 5 days at the top of this forum without an answer, which means also no other question or answer was posted in this time, I wonder what this says about the amount of interest in C#...
Anyone solved this? I have my development work on a share. I have followed the instructions to authorize this, started mmc, gone through the steps to add a url to IntranetZone, I come to the instruction "add the .net sdk to the share location of your project". Whatever does this mean...
I've been trying out some more advanced template functions recently. As an example I wrote a simple sort routine slightly in the manner of STL:
template <class type> inline void swap(type a[],int e1,int e2){
type t = a[e1];
a[e1] = a[e2];
a[e2] = t;
}
template <class T> struct gt
{
bool...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.