Search Results

1
vote

Inherited class quagmire, how to make this maintainable code

If you do prefer helpers do the same with helpers public class InitUser { public InitUser(SqlDataReader dr, User u) { } } public class InitUserExtension : InitUser { public InitU …
0
votes

Using double, return string

var list = [ [95.0, "A+"], [90.0, "A"], [85.0, "B+"], [80.0, "B"], [75.0, "C+"], [70.0, "C"], [65.0, "D+"], [60.0, "D"] ]; for (var i in list) if (scor …
0
votes

Data structure question

Create integer array for non-zero values and bit array holding indicators if particular row contains non-zero value. You can find then necessary element in first array summing up bits in se …
0
votes

c# windows-services - How do I handle logging exceptions?

Create separate ping service on a well behaving machine which you trust to be very reliable. If your primary service fails then ping also fails and control service then should send you e-mail with …