4
votes
Huge main.cs file
First, you need to make sure you're in the same namespace:
namespace mynamesspace {
Next, if your class members are declared privately, you need to indicate you're …
1
vote
C# interface question
I don't believe there's a cost. Since the types already implement IEnumerable, the object should be able to be used straight away (note that this is mostly a guess; I have no idea about how the CLR …
0
votes
i want to capture a string through regex only when it contains any alphabetic characters?
This is my favorite RegEx testing site: Javascript Regexp Tester and Cheat Sheet
…
0
votes
Databinding a Custom Control
Displaying the information works
great. On the other hand regardless of
whether I set the Update to OnValidate
or OnValueChange it never updates the
BindingSource.
…
0
votes
What’s the best way to compare the equality of two DateTime’s in C#… but only to a certain precision?
Construct new DateTime objects and compare them. In C#, there's very little penalty for constructing "throwaway" objects in this way.
…
0
votes
How do you find all implementations of an interface?
I've heard tell (no experience myself) that Doxygen is to .Net as as javadoc is to java.
…
2
votes
encrypt a file automagically in C#?
SQL Server Compact Edition (it's an inprocess database server like SQLite) allows you to encrypt the file …
0
votes
Using Visual Studio to make non aspx code-behind pages
I believe if you inherit your class from the abstract UI.TemplateControl, you will get this functionality. I'm browsing through the interfaces to see if simply implementing a specific interface wil …
10
votes
Keeping passwords in the registry as “secrets”
You're probably thinking of the Data Protection API. Search MSDN or read some blogs and see if that'll work …
1
vote
A null coalescing assignment operator?
I'm not necessarily against the operator, however, that kind of variable reuse just doesn't feel like the "right way" to me. Bugs that should have been obvious NULL pointers end up populated with u …
1
vote
Can I develop iPhone applications using C#.NET on Vista?
Sadly, no, you cannot develop standard iPhone apps with C#/.NET.
However, I've seen screenshots of mono running on an iPhone, so, someday perhaps ... although, it probably won't be in a leg …
1
vote
Getting my head around an inheritance problem
BUT how do I create a new instance of AccountXtra when I have a instance of Account?
That's going the wrong way - you need to have created the AccountXtra objec …
1
vote
Is it possible to trigger a “fake” scroll progmatically in WinForms?
I honestly have no idea whether that would work, but my guess is that if a scrollbar isn't present on the form it wouldn't.
However, I would expect that if you have a PictureBox control tha …
4
votes
What sort of gotchas/tips/hints can you share for a .Net program which will send possibly 10k+ emails a day to subscribers?
I highly recommend multithreading this if you aren't already!
…
2
votes
Partial transparency with C# .NET 3.5 WinForms?
I think I would call this expected behavior, actually. What I would do is render my background to an in-memory bitmap and, in the paint event, copy that to the form (basic double-buffering).
…
