2
votes
Difference of two ‘uint’
This is just the default - you can change the compilation settings to enable runtime arithetic overflow checks. If you turn that on, exceptions will be thrown as you are expecting. Alternatively, y …
1
vote
How to get information about an exception raised by the target of Control.Invoke
If I've read correctly, you are wanting to access the details of the original exception that occurred. You should be able to get that by checking the InnerException property on the ex variable. …
2
votes
How to use blowfish in C++ as an external dll in C#
I've had a similar problem to this on a previous project.
Having looked at the C++ code, it is using ECB as you suspected in your previous post.
I think I see the reason why you get different resul …
1
vote
Problem in calling a C++ dll function from C#
To add to what jachymko has said, also check the documentation for BitConverter - you need to be sure you are passing the key and data in the byte order you intended.
Note - from your previous thre …
0
votes
C#: Blowfish Encipher a single dword
Hi John
Blowfish works on eight byte blocks. The only way to encrypt data that falls short of eight bytes (or a multiple of eight) is to pad it out (in this case with zeroes).
You n …
0
votes
Resources for Learning Design Patterns
Martin Fowler's website has plenty of information: http://martinfowler.com/articles.html.
Much of this is covered also in his book …
2
votes
If Sql Server returns an error, then SqlException should be thrown. But it isn’t
You should actually be able to modify the primary key without error, so long as it doesn't result in a duplicate.
…
1
vote
Deploy a CLR Trigger/Stored Procedure using WiX
If you want to avoid the trickiness of placing the file, you can use the alternate form of the CREATE ASSEMBLY statement that specifies the assembly in byte form.
e.g.
CREATE ASSEMB …
0
votes
What’s a good way of doing string templating in .NET?
There's some nice background on this, with an implementation, on Phil Haack's blog: http://haacked.com/archiv …
1
vote
TripleDES: Specified key is a known weak key for ‘TripleDES’ and cannot be used.
Unfortunately, the behaviour can't be overridden.
…
2
votes
How do I configure base class libraries in my app.config file?
One useful resource is the machine-level configuration files. The actual files are bare-bones, but there are ".comments" files alongside them that give fairly detailed examples of what can be achie …
0
votes
Winforms MVP Grid Events Problem
The key is getting all that business logic into the presenter where it's testable.
The view should call the presenter to perform the business logic, passing the information needed (e.g. the …
0
votes
Location of a Windows service *not* in my project
Another option, without the interop, would be a WMI lookup (or registry - bit hacky!).
Here's a quick example, based on …
3
votes
What is better? Static methods OR Instance methods
The usefulness of a static method primarily comes when you need to call the method without ever instantiating the object. For example, maybe the static method is there to actually look up an existi …
0
votes
Serialization Assembly. Is it needed or not?
This is not relevant to your situation, but there's another good reason for pre-generating the serialization assembly - it's necessary when hosting your code in SQL Server (i.e. SQLCLR). SQL Server …
