0
votes
Debugging a stack overflow in .NET (I’ve checked the usual suspects, and have moved on to winDBG and co.)
According to stack object dump "ASI.ParadigmPlus.GrilleApp.GA1000" is 96872 bytes. You might want to figure out what that object is all about. That's a pretty big chunk of your stack space right th …
0
votes
DateTimePicker: pick both date and time
I'm afraid the DateTimePicker control doesn't have the ability to do those things. It's a pretty basic (and frustrating!) control. Your best option may be to find a third-party control that does wh …
6
votes
Serializing DateTime to time without milliseconds and gmt
You could create a string property that does the translation to/from your timeField field and put the serialization attribute on that instead the the real DateTime property that the rest of the app …
54
votes
Redundancy in C#?
The reason the code appears to be redundant is because, to a novice programmer, it appears to be defining the same thing twice. But this is not what the code is doing. It is defining two separate t …
1
vote
Is it ok to call a virtual method from Dispose or a destructor?
I do not believe there is any recommendation against calling virtual methods. The prohibition you are remembering might be the rule against referencing managed objects in the finalizer.
The …
2
votes
What does the “private” modifier do?
As pointed out by Jon Skeet in his book C# In Depth, there is one place in C# where the private keyword is required to achieve an effect.
If my memory serves correctly, the private …
7
votes
What is the difference between myCustomer.GetType() and typeof(Customer) in C#?
GetType() is used to find the actual type of a object reference at run-time. This can be different from the type of the variable that references the object, because of inheritance. typeof( …
0
votes
What is the proper way to ensure a SQL connection is closed when an exception is thrown?
I'm guessing that by "_SqlConnection.State == ConnectionState.Closed" you meant !=.
This will certainly work. I think it is more customary to contain the connection object itself inside a …
1
vote
Fastest way to convert a possibly-null-terminated ascii byte[] to a string?
One possibility to consider: check that the default code-page is acceptable and use that information to select the conversion mechanism at run-time.
This could also take into account whethe …
1
vote
What is StringBuilder’s RAM consumption like?
Strigbuilder is a perfectly good solution to memory problems caused by concatenating strings.
To answer your specific question, Stringbuilder has a constant-sized overhead compared to a nor …
0
votes
Calling stored procedures
Microsoft's new Entity Framework provides just what you're asking for. EF is normally used to create proxy classes for database objects, but one thing a lot of people don't realize is that it also …
0
votes
c# store user settings in database
First you need your table.
create table user_settings
(
user_id nvarchar(256) not null,
keyword nvarchar(64) not null,
constraint PK_user_settings primary key (user_id, keyw …
1
vote
What do you think of the direction C# is heading for compared to Java?
We don't need another Java. We already have Java. The more divergent the languages become, the more useful they become.
…
1
vote
conditional logic based on type.
This is kinda ugly but it gets the job done:
public void Method(B arg)
{
if (arg == null) return;
...
}
public void Method(C arg)
{
if (arg == null) return;
...
}
public void M …
5
votes
Problem with System.IO.Directory.Exists
Exists() returns false, rather than throwing an error, if any sort of IO error occurs. One thing to watch out for is security errors. Exists does not perform network authentication, so it requires …
