¡@

Home 

c# Programming Glossary: programs

How do I access ARP-protocol information through .NET?

http://stackoverflow.com/questions/1148778/how-do-i-access-arp-protocol-information-through-net

devices are online and offline in our LAN. I've seen many programs doing a kind of graphical network overview presenting LAN IP..

Best practice to make a multi language application in C#/WinForms? [closed]

http://stackoverflow.com/questions/119568/best-practice-to-make-a-multi-language-application-in-c-winforms

etc. A question of taste... One last point I write programs in English and French I use en and fr and not en US and fr FR..

Detect Antivirus on Windows using C#

http://stackoverflow.com/questions/1331887/detect-antivirus-on-windows-using-c-sharp

scanning or on access scanning is turned on for antivirus programs. For firewalls Windows Security Center detects whether a third..

Understanding Garbage Collection in .net

http://stackoverflow.com/questions/17130382/understanding-garbage-collection-in-net

this is what gets programmers in trouble that write small programs to do something with an Office app. The debugger usually gets..

.NET Process Monitor

http://stackoverflow.com/questions/1986249/net-process-monitor

ProcessName .Value Run this and start some programs to see it at work. Beware that it is not especially quick. ..

What is a message pump?

http://stackoverflow.com/questions/2222365/what-is-a-message-pump

of a message loop to Office is related to COM. Office programs are COM enabled programs that's how the Microsoft.Office.Interop.. Office is related to COM. Office programs are COM enabled programs that's how the Microsoft.Office.Interop classes work. COM takes.. be created on an STA thread. You can see this back in .NET programs the entry point of the UI thread of a Windows Forms or WPF program..

Tips for optimizing C#/.NET programs [closed]

http://stackoverflow.com/questions/2473666/tips-for-optimizing-c-net-programs

for optimizing C# .NET programs closed It seems like optimization is a lost art these days...

In what areas might the use of F# be more appropriate than C#? [closed]

http://stackoverflow.com/questions/2785029/in-what-areas-might-the-use-of-f-be-more-appropriate-than-c

employing these two languages in your production polyglot programs and also the areas within production software web apps client..

What do 'statically linked' and 'dynamically linked' mean?

http://stackoverflow.com/questions/311882/what-do-statically-linked-and-dynamically-linked-mean

easier updates and bug fixes on the other it can lead to programs ceasing to work if the updates are incompatible this is sometimes..

Performance differences between debug and release builds

http://stackoverflow.com/questions/4043821/performance-differences-between-debug-and-release-builds

opted to go for the Debug configuration even when the programs are actually deployed at the customers place. As far as I know..

.NET String to byte Array C#

http://stackoverflow.com/questions/472906/net-string-to-byte-array-c-sharp

return new string chars As long as your program or other programs don't try to interpret the bytes somehow which you obviously..

Interprocess communication for Windows in C# (.NET 2.0)

http://stackoverflow.com/questions/50153/interprocess-communication-for-windows-in-c-sharp-net-2-0

IPC on Windows before. Currently I'm developing a pair of programs a standard GUI CLI app and a windows service. The app has to..

How to elevate privileges only when required?

http://stackoverflow.com/questions/573086/how-to-elevate-privileges-only-when-required

upon startup as I understand. If you look at various programs that utilise UAC you should see that they actually launch a..

How do I convert Word files to PDF programmatically?

http://stackoverflow.com/questions/607669/how-do-i-convert-word-files-to-pdf-programmatically

I have found several open source freeware programs that allow you to convert .doc files to .pdf files but they're.. driver variety with no SDK attached. I have found several programs that do have an SDK allowing you to convert .doc files to .pdf..

Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentials

http://stackoverflow.com/questions/659013/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials

mounted drive is a shared resource available to other programs on the local computer during file access by the program. Even..

C# Events and Thread Safety

http://stackoverflow.com/questions/786383/c-sharp-events-and-thread-safety

this advice it simply isn't an issue for single threaded programs and in fact given the absence of volatile in most online example..

Get installed applications in a system

http://stackoverflow.com/questions/908850/get-installed-applications-in-a-system

rather slower to execute and I've heard it may only list programs installed under ALLUSERS though that may be incorrect. It also..

How do I deploy two ClickOnce versions simultaneously?

http://stackoverflow.com/questions/1754318/how-do-i-deploy-two-clickonce-versions-simultaneously

for each. Though when I install the second one Add Remove Programs only sees the latter though the former is still on disk as when..

How to register a .Net dll in GAC?

http://stackoverflow.com/questions/2182316/how-to-register-a-net-dll-in-gac

the Visual Studio Command Prompt in the start menu under Programs Visual Studio Visual Studio Tools. share improve this answer..

How do I get latest clearcase label programmatically from C#?

http://stackoverflow.com/questions/268595/how-do-i-get-latest-clearcase-label-programmatically-from-c

the interface can be accessed through ClearCase help Start Programs Rational ClearCase ClearCase Help where there's an entry for..

How to create a .NET setup project with crystal report prerequisite?

http://stackoverflow.com/questions/4779425/how-to-create-a-net-setup-project-with-crystal-report-prerequisite

Visual Studio 9.0 Crystal Reports CRRedist IA64 in your Programs folder. There you will find a redistributable package. Just..

Deploy C# ActiveX in a CAB for Internet Explorer use

http://stackoverflow.com/questions/5484326/deploy-c-sharp-activex-in-a-cab-for-internet-explorer-use

file MSDN About INF File Architecture SN.EXE Code Strong Programs with Strong Names Nikolkos Craft How To Deploy .NET ActiveX..

Passing command line arguments in C#

http://stackoverflow.com/questions/653563/passing-command-line-arguments-in-c-sharp

like this C Documents and Settings All Users Start Menu Programs App name even if I add to the argument Any help Here is the.. username C Documents and Settings All Users Start Menu Programs application name The problem is I can get the first and the..

Convert SQL to Linq left join with null

http://stackoverflow.com/questions/9171063/convert-sql-to-linq-left-join-with-null

var progy from u in db.ProgramLocations join b in db.Programs on u.ProgramID equals b.ProgramID into yG from y1 in yG.DefaultIfEmpty.. .DefaultIfEmpty as per this question . var query from p in Programs join pl in ProgramLocations on p.ProgramID equals pl.ProgramID.. ProgramLocationName get set public static List Program Programs new List Program public static List ProgramLocation ProgramLocations..