Search Results

0
votes

What Predefined #if symbos does c# have?

Well, that depends on the compiler you are using, and the command line options. Mono defines different names than Microsoft's compiler by default, and depending on what system you are you get diffe …
1
vote

Enumerate Windows user group members on remote system using c#

This should be easy to do using WMI. Here you have a pointer to some docs: WMI Documentation for Win32_UserAcc …
3
votes

Best way to replace tokens in a large text template

Well, depending on how many variables you have in your template, how many templates you have, etc. this might be a work for a full template processor. The only one I've ever used for .NET is …
0
votes

What’s the fastest way to bulk insert a lot of data in SQL Server (C# client)

Have you tried using transactions? From what you describe, having the server committing 100% of the time to disk, it seems you are sending each row of data in an atomic SQL sentence thus fo …
-7
votes

Compact Framework - Is there an MVC framework/library available?

Edit: Yes, I'm an idiot, sorry. I don't get it. Why would you want MVC on Compact Framework? Are you trying to write a WebApp inside your phone? If what you want is to writ …
0
votes

Compact Framework - Is there an MVC framework/library available?

@Brian: yup, you are right, sorry I'm such an ass. …
0
votes

How do I close a parent Form from child form in Windows Forms 2.0?

The Form class doesn't provide any kind of reference to the 'parent' Form, so there's no direct way to access the parent (unless it happens to be the MDI parent as well, in which case you could acc …
0
votes

Resources that have to be manually cleaned up in C#?

Well, as long as you use the managed version of the resources and don't call the windows APIs by yourself, you should be OK. Only worry about having to delete/destroy a resource when what you get i …
1
vote

Why doesn’t VB.NET 9 have Automatic Properties like C# 3??

There's no particular reason really. It's been always been the case that even when VB.NET and C# are touted to be equally powerful (and to be fair, they are) their syntaxes and some of the …
0
votes

Exceptions vs Result Codes for a socket client class.

This is a rather interesting question. As such, there's probably no '100% correct' answer, and mostly it depends on how do you think the code using your function should be structured. The w …
0
votes

Pascal casing or Camel Casing for C# code?

Actually, there's no "standard" convention on this. There's a Microsoft edited guideline somewhere, and as with with any other naming convention guideline, surely there's another one refuting it, b …
2
votes

Finding the time taken to send messages with WCF net.tcp

Hmmm... that's a difficult one. The problem here is you can't even make sure both the client and the server timers are in sync. If what you want to do is send some out-of-band data, so that …