Thanks for elaborating, I understand now. And I agree that C# language should have some construct like the suggested one to allow the fall-through.
Marach
Posts
-
What Language Features Do You Miss In C#? -
What Language Features Do You Miss In C#?you can type several 'case' statements one after the other. contrived example:
int number = GetNumberBetween1And5();
string text = null;
switch( number ) {
case 1:
text = "1";
break;
case 2:
case 3:
case 4:
text = "2 or 3 or 4";
break;
case 5:
text = "5";
break;
}is that type of fall-through what you said you're missing?
-
Does anyone have the renowned EZLogger library?after some additional googling, I have found the following: http://code.google.com/p/pylaunchy/source/browse/trunk/pylaunchy/ezlogger/?r=8 strange thing is the link and name of the library as mentioned in the .hpp file is the same, but author is different...
-
Does anyone have the renowned EZLogger library?good idea. will try contacting him directly. thanks.
-
Does anyone have the renowned EZLogger library?I saw this page, it's a good read. in references at the bottom it gives that (dead) link to EZLogger. I know I could use some other logging library or use available code (like on this page) to create one, but that will become an option if I can't get EZLogger. thanks anyway.
-
Does anyone have the renowned EZLogger library?yes, I have tried. what you get points you to the link I have put in my original post: a non-working link as the site seems to be down.
-
Does anyone have the renowned EZLogger library?well, don't you think I googled before asking here? all I could find is the c# library of the same author (Ravi Bhavnani), while I need the c++ version. also, there are some libraries with similar/same name by other authors or that are commercial products, obviously not the thing I'm looking for. if you wanted to be condescending, at least you should have read my question carefully. in HoN the announcer would now scream: 'Humiliation!' :) still waiting for a helpful reply...
-
Does anyone have the renowned EZLogger library?I have posted this in 'C / C++ / MFC' forums, but maybe I get a quicker answer here (sorry for cross-post). there is a lightweight open source c/c++ logging library that is commended all around and I planned to use it for my project. it was available at: http://axter.com/ezlogger but the site is down for couple of days now and I need the library asap. does anyone have it and could upload it somewhere for me to download? I'd really appreciate it. tnx in advance Reply·Email·View Thre