¡@

Home 

c# Programming Glossary: articles

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

files for multi language applications. The are many articles on the web explaining how to use them. I have used two different..

Are there any suggestions for developing a C# coding standards / best practices document? [closed]

http://stackoverflow.com/questions/14967/are-there-any-suggestions-for-developing-a-c-sharp-coding-standards-best-pract

done a pretty extensive search of the Internet and read articles on what a coding standards document should should not contain... 4.5 Microsoft's C# guidelines http blogs.msdn.com brada articles 361363.aspx . and then document the differences from and additions..

Transitioning from Windows Forms to WPF

http://stackoverflow.com/questions/15681352/transitioning-from-windows-forms-to-wpf

share improve this question I like to blog about beginner articles for WPF and there are a few in particular that may help you..

How slow are .NET exceptions?

http://stackoverflow.com/questions/161942/how-slow-are-net-exceptions

that the speed is not the issue. I've read numerous blogs articles and posts pertaining one side or the other. So which is it Some.. question I'm on the not slow side. I've written two short articles about this. There are criticisms of the benchmark aspect which..

Hash and salt passwords in C#

http://stackoverflow.com/questions/2138429/hash-and-salt-passwords-in-c-sharp

in C# I was just going through one of DavidHayden's articles on Hashing User Passwords . Really I can't get what he is trying..

How do I ensure a form displays on the “additional” monitor in a dual monitor scenario? [duplicate]

http://stackoverflow.com/questions/2561104/how-do-i-ensure-a-form-displays-on-the-additional-monitor-in-a-dual-monitor-sc

then it will be better. i searched from net and found some articles to get primary and secondary screens. but unable to implement..

Setting Objects to Null/Nothing after use in .NET

http://stackoverflow.com/questions/2785/setting-objects-to-null-nothing-after-use-in-net

no longer in scope and are they any bad side effects MSDN articles never do this in examples and currently I do this as I cannot..

In .NET, which loop runs faster, 'for' or 'foreach'?

http://stackoverflow.com/questions/365615/in-net-which-loop-runs-faster-for-or-foreach

all arrays etc. I scoured Google and found a few articles but most of them are inconclusive read comments on the articles.. but most of them are inconclusive read comments on the articles and open ended. What would be ideal is to have each scenario..

Compare using Thread.Sleep and Timer for delayed execution

http://stackoverflow.com/questions/391621/compare-using-thread-sleep-and-timer-for-delayed-execution

new Timer o action null millisecond 1 I had read some articles about using Thread.Sleep is bad design. But I don't really understand..

Is BCrypt a good hashing algorithm to use in C#? Where can I find it?

http://stackoverflow.com/questions/481160/is-bcrypt-a-good-hashing-algorithm-to-use-in-c-where-can-i-find-it

other good resources. I've must have read a dozen articles by dozens of authors but few write as plainly on the subject..

Change Attribute's parameter at runtime

http://stackoverflow.com/questions/51269/change-attributes-parameter-at-runtime

How to use WPF Background Worker

http://stackoverflow.com/questions/5483565/how-to-use-wpf-background-worker

outputMessage Initialization Complete I have read a few articles about the BackgroundWorker and how it should allow me to keep..

Should I store my images in the database or folders? [duplicate]

http://stackoverflow.com/questions/713243/should-i-store-my-images-in-the-database-or-folders

folders will be better is because there are so much nice articles with fancy silver light kinda features that i can use but all..

Understanding WCF Windows Authentication

http://stackoverflow.com/questions/9588265/understanding-wcf-windows-authentication

data contracts authorization http www.theserverside.net tt articles showarticle.tss id ClaimsBasedSecurityModel c# asp.net .net..

What's the difference between dynamic(C# 4) and var?

http://stackoverflow.com/questions/961581/whats-the-difference-between-dynamicc-4-and-var

between dynamic C# 4 and var I had read a ton of articles about that new keyword that will ship with C# v4 but I couldn't..

Why is Multiple Inheritance not allowed in Java or C#?

http://stackoverflow.com/questions/995255/why-is-multiple-inheritance-not-allowed-in-java-or-c

benefit . For a more fun and in depth read there are some articles available on the web with interviews of some of the language..

Run Powershell-Script from C# Application

http://stackoverflow.com/questions/11120452/run-powershell-script-from-c-sharp-application

Edit Found this little gem... http www.codeproject.com Articles 10090 A small C Class for impersonating a User namespace Tools..

What's the best way to watchdog a desktop application?

http://stackoverflow.com/questions/11146381/whats-the-best-way-to-watchdog-a-desktop-application

and this http www.codeproject.com Articles 18367 Launch your application in Vista under the local s In..

What (free) library may I use for creating 3d surface plot graphic in C#?

http://stackoverflow.com/questions/11259873/what-free-library-may-i-use-for-creating-3d-surface-plot-graphic-in-c

example to create my graphic http www.codeproject.com Articles 42174 High performance WPF 3D Chart . share improve this answer..

WCF will not return an int

http://stackoverflow.com/questions/12964759/wcf-will-not-return-an-int

return result Update http www.codeproject.com Articles 323097 WCF ASMX Interoperability Removing the Annoying xx has..

How to Avoid Firing ObservableCollection.CollectionChanged Multiple Times When Replacing All Elements Or Adding a Collection of Elements

http://stackoverflow.com/questions/13302933/how-to-avoid-firing-observablecollection-collectionchanged-multiple-times-when-r

EDIT I found a good library http www.codeproject.com Articles 249311 Enhanced ObservableCollection But it seems that it does..

Creating a MVC ViewModels for my data

http://stackoverflow.com/questions/15432246/creating-a-mvc-viewmodels-for-my-data

the user information plus the Description of one of the Articles would I create a view model for this Do I just create a a viewmodel..

Writing a CSV file in .net

http://stackoverflow.com/questions/1684667/writing-a-csv-file-in-net

some more detailed CSV rules http www.creativyst.com Doc Articles CSV CSV01.htm A neat 3rd party library is Linq to CSV not framework..

HTML.ActionLink method

http://stackoverflow.com/questions/200476/html-actionlink-method

of the method Html.ActionLink article.Title new controller Articles action Details id article.ArticleID that has been retired in..

Ternary operators in C#

http://stackoverflow.com/questions/2765360/ternary-operators-in-c-sharp

How can I test ModelState?

http://stackoverflow.com/questions/286124/how-can-i-test-modelstate

data of course. Some examples http www.singingeels.com Articles Test_Driven_Development_with_ASPNET_MVC.aspx Test for required..

How to upload multiple files using webclient UploadFile, UploadValues in C#?

http://stackoverflow.com/questions/2950292/how-to-upload-multiple-files-using-webclient-uploadfile-uploadvalues-in-c

to enable multi part form data http www.codeproject.com Articles 72232 Csharp File Upload with form fields cookies and he.aspx..

How to apply an XSLT Stylesheet in C#

http://stackoverflow.com/questions/34093/how-to-apply-an-xslt-stylesheet-in-c-sharp

I found a possible answer here http www.csharpfriends.com Articles getArticle.aspx articleID 63 From the article XPathDocument..

Looking for C# equivalent of scanf

http://stackoverflow.com/questions/472202/looking-for-c-sharp-equivalent-of-scanf

be viewed and downloaded at http www.blackbeltcoder.com Articles strings a sscanf replacement for net . share improve this answer..

Callback functions in C/C++/C# [closed]

http://stackoverflow.com/questions/6183847/callback-functions-in-c-c-c

any useful information about Callback Functions such as Articles About Callback Function. Examples of use. Code parts. I think..

Listen for ICMP packets in C#

http://stackoverflow.com/questions/626541/listen-for-icmp-packets-in-c-sharp

years later and I stumbled across http www.codeproject.com Articles 17031 A Network Sniffer in C which gave me enough of a hint..

Best way to query a data dictionary in sql [closed]

http://stackoverflow.com/questions/7340422/best-way-to-query-a-data-dictionary-in-sql

I'm glad I'll never know. http thedailywtf.com Articles Three for Three Recursion Threads and Wrong Answer.aspx share..

Is there any definitive documentation on writing software installers?

http://stackoverflow.com/questions/923384/is-there-any-definitive-documentation-on-writing-software-installers

at Rob Mensching's old blog when setup isn't just xcopy . Articles there are probably what convinced me that diving in and learning..

What is the point of creating foreign key properties when using Entity Framework Code First?

http://stackoverflow.com/questions/9253234/what-is-the-point-of-creating-foreign-key-properties-when-using-entity-framework

with entity framework 4.aspx http www.codeproject.com Articles 327945 Architecture Guide ASP NET MVC3 Entity Framework C Question..

How does a static constructor work?

http://stackoverflow.com/questions/9398509/how-does-a-static-constructor-work

page on the subject for details http csharpindepth.com Articles General Beforefieldinit.aspx Is it ever possible for a static..

A good and complete tutorial about reflection in .NET? [closed]

http://stackoverflow.com/questions/9428779/a-good-and-complete-tutorial-about-reflection-in-net

reflection introduction http www.codeproject.com Articles 17269 Reflection in C Tutorial http www.codeguru.com csharp..