Looking at the ".resx" files produced by the Windows forms designer, I see
nodes like this:
<data name="MyRadioBtn.Size" type="System.Drawing.Size, System.Drawing">
<value>94, 21</value>
If you then read the "94, 21" back into your code as a string (exactly as
seen), how do you then...
more >>
I have a class that tries to compare two generic types:
if (low < high)
Where they are declared as:
T low = (T)float.Parse(parts[0]);
T high = (T)float.Parse(parts[1]);
if (low < high)
Two questions come up.
1) I get an error Cannot convert type 'float' to 'T'. ...
more >>
I've created some simple performance tests within the NUnit test framework
to test the performance of various core business object calls e.g. creating
invoices / purchase orders e.t.c. and updating them. The tests basically
need to assert that the time to say create 1000 documents is less th...
more >>
Is there any way to examine a given thread's stack? As in, the list of
variables currently accessible by the executing code on a given thread, plus
their values? TIA!...
more >>