Monday, April 8, 2013
interface and base classes
in c# base classes must go first. No hints for this from the IDE
Friday, April 5, 2013
Difference Between Throw and Throw Ex
Arrays in WCF
in order to pass an list and not have .net deserialize to an array you must configure the service reference
here:
here:
Cannot read configuration file due to insufficient permissions
we couldn't get a website working until we gave specific rights to the user for the anonymous logins.
Wednesday, April 3, 2013
How to tell if a chosen range is in the used section of spreadsheet
this is what I did:
I unioned the existing used range with chosen range and checked for equality
if (!worksheet.UsedRange.Union(chosenrange).Equals(worksheet.UsedRange))
throw new EExcelUtilsRangeOutOfBoundsOfData();
I unioned the existing used range with chosen range and checked for equality
if (!worksheet.UsedRange.Union(chosenrange).Equals(worksheet.UsedRange))
throw new EExcelUtilsRangeOutOfBoundsOfData();
Go to statements in Shakespeare (much ado...)
DOGBERRY
Dost thou not suspect my place? dost thou not
suspect my years? O that he were here to write me
down an ass! But, masters, remember that I am an
ass; though it be not written down, yet forget not
that I am an ass. No, thou villain, thou art full of
piety, as shall be proved upon thee by good witness.
I am a wise fellow, and, which is more, an officer,
and, which is more, a householder, and, which is
more, as pretty a piece of flesh as any is in
Messina, and one that knows the law, go to; and a
rich fellow enough, go to; and a fellow that hath
had losses, and one that hath two gowns and every
thing handsome about him. Bring him away. O that
I had been writ down an ass!
Subscribe to:
Comments (Atom)

