9
votes
How to prevent others from using my .Net assembly?
In .Net 2.0 or better, make everything internal, and then use Friend Assemblies
http://msdn.microsoft.com/en-u …
1
vote
Image library that will auto-crop
Disclaimer: I work for a .NET Imaging vendor (Atalasoft)
It depends on what kind of image you are talking about. If you are talking abo …
1
vote
Recommendations for a google finance-like interactive chart control
The Zoom Scrollbar sample on the SoftwareFX site looks like what you are looking for:
http://demo.softwarefx. …
4
votes
Unit testing a multithreaded application?
TypeMock (commercial) has a unit testing framework that automatically tries to find deadlocks in multithreaded applications and I think can be …
0
votes
Getting image dimensions without reading the entire file
Yes, you can absolutely do this and the code depends on the file format. I work for an imaging vendor (Atalasoft), and our product provides a …
0
votes
What is the best way to improve ASP.NET/C# compilation speed?
You can precompile the site, which will make the first run experience better
http://msdn.microsoft.com/en-us/l …
3
votes
What is the easiest way to upgrade a large C# winforms app to WPF
Do you use a lot of User controls for the pieces? WPF can host winform controls, so you could piecewise bring in parts into the main form.
…
2
votes
.NET Scanning API
Disclaimer: I work for Atalasoft
Atalasoft has a product, DotTwain, which has no COM interop (just direct calls to t …
3
votes
Barcode- and Character Recognition component for .Net
Disclaimer: I work for Atalasoft.
DotImage + the Barcode Reader addon from Atalasoft offers a Runtime Royalt …
1
vote
How to update components in different threads? .NET CF
In order to call a function that updates the UI from another thread use the Invoke function of the Form.
Here is a good reference
…
0
votes
How can you add additional logic to type resolution at runtime?
Isn't that possible just by using AppDomain events?
…
2
votes
how do you organize your namespaces?
For applications
Company.Product.Tier.Sub.Sub
where I like to get Tier from Model, View, Controller or other established names (Data)
But for our controls, …
3
votes
.NET + Copying large amounts of memory tricks
I think you can count on Buffer.BlockCopy() to do the right thing
http://msdn.microsoft.com/en- …
0
votes
Why are Exceptions not Checked in .NET?
I went from Java to C# because of a job change. At first, I was a little concerned about the difference, but in practice, it hasn't made a difference.
Maybe, it's because I come from C++, …
0
votes
Has an event handler already been added?
If this is the only handler, you can check to see if the event is null, if it isn't, the handler has been added.
I think you can safely call -= on the event with your handler even if it's n …
