c# Programming Glossary: reversing
ReverseString, a C# interview-question http://stackoverflow.com/questions/1009689/reversestring-a-c-sharp-interview-question the joys of Unicode. Reversing a string isn't the same as reversing a sequence of chars. I like Marc's optimisation for null empty..
Round Robin Tournament algorithm in C# http://stackoverflow.com/questions/1293058/round-robin-tournament-algorithm-in-c-sharp my solution involved such convoluted selection matching reversing of array elements. After I got thinking about what my solution..
How to test method call order with Moq http://stackoverflow.com/questions/1765738/how-to-test-method-call-order-with-moq unit tests. I'll just have to manually test it works. The reversing of the order though was taken into a seperate test class where..
Compiling C# to Native? http://stackoverflow.com/questions/1921656/compiling-c-sharp-to-native really that difficult to circumvent but I just feel like reversing x86 assembly is more difficult than reversing what Reflector.. feel like reversing x86 assembly is more difficult than reversing what Reflector gives me. Right now if I throw my C# application..
Contravariance explained http://stackoverflow.com/questions/1962629/contravariance-explained Animal is now less than or equal than Mammal therefore reversing the relationship Animal someAnimal Mammal.GetSomeMammal This..
Trying to do Office Automation with Excel 2007, but keeps using Excel 2003 http://stackoverflow.com/questions/2239472/trying-to-do-office-automation-with-excel-2007-but-keeps-using-excel-2003 both. I would uninstall Excel 2003 and then uninstall 2007 reversing the order in which you installed them and then install Excel..
Integer ID obfuscation techniques http://stackoverflow.com/questions/2565478/integer-id-obfuscation-techniques friendly if that's important. Decrypting is as simply as reversing the operation by computing the inverse of the _encryptionTable..
using static Regex.IsMatch vs creating an instance of Regex http://stackoverflow.com/questions/414328/using-static-regex-ismatch-vs-creating-an-instance-of-regex In a rare departure from my typical egotism I'm kind of reversing myself on this answer. My original answer preserved below was..
How to Get MAC address programatically in c# for a windows mobile 6.0 device http://stackoverflow.com/questions/4143323/how-to-get-mac-address-programatically-in-c-sharp-for-a-windows-mobile-6-0-devic
Generate a unique value for a combination of two numbers http://stackoverflow.com/questions/4226317/generate-a-unique-value-for-a-combination-of-two-numbers
Protect .NET code from reverse engineering? http://stackoverflow.com/questions/506282/protect-net-code-from-reverse-engineering in .NET Reflector and makes it a pain to unpack for reversing. Write your own custom packer . If the third party packers are..
How to sort ArrayList of DateTime objects in descending order? http://stackoverflow.com/questions/844251/how-to-sort-arraylist-of-datetime-objects-in-descending-order an overload of the Sort method that takes a comparer. By reversing the regular comparison you get a sort in descending order list.Sort..
|