¡@

Home 

c# Programming Glossary: community

Benchmarking small code samples in C#, can this implementation be improved?

http://stackoverflow.com/questions/1047218/benchmarking-small-code-samples-in-c-can-this-implementation-be-improved

Here is the modified function as recommended by the community feel free to amend this its a community wiki. static void Profile.. recommended by the community feel free to amend this its a community wiki. static void Profile string description int iterations..

Determining if a folder is shared in .NET

http://stackoverflow.com/questions/136539/determining-if-a-folder-is-shared-in-net

use WMI Win32_Share. Take a look at http www.gamedev.net community forums topic.asp topic_id 408923 Shows a sample for querying..

How can I obtain all the possible combination of a subset?

http://stackoverflow.com/questions/13765699/how-can-i-obtain-all-the-possible-combination-of-a-subset

need some performance tests. I'll give it a go. It is community wiki feel free to update it. void PerfTest var list Enumerable.Range..

Alternatives to System.Drawing for use with ASP.NET?

http://stackoverflow.com/questions/1528525/alternatives-to-system-drawing-for-use-with-asp-net

the library itself is well tested and vetted by the community . The library is free and open source. The Apache 2 license..

Why is F# so special? [closed]

http://stackoverflow.com/questions/159356/why-is-f-so-special

credible stable reputation and as a focal point for the F# community and as a key source of high impact users at Microsoft. The inherent..

Should I learn VB.NET or C#? [closed]

http://stackoverflow.com/questions/1653895/should-i-learn-vb-net-or-c

is reopened of course UPDATE2 Question reopened and made community wiki.Thank you all. c# .net vb.net share improve this question..

Abuse of C# lambda expressions or Syntax brilliance?

http://stackoverflow.com/questions/1718037/abuse-of-c-sharp-lambda-expressions-or-syntax-brilliance

variables So is this common practice with the C# 3.5 4.0 community and the lambda expressions lovers Or is a rogue one trick maverick..

XML Serialization and Inherited Types

http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types

a shout out. It will also help drive more people to the community Now but unsure as to what to do with answers here since they..

Cleanest Way to Invoke Cross-Thread Events

http://stackoverflow.com/questions/22356/cleanest-way-to-invoke-cross-thread-events

a background thread onto my UI thread is. Based on the community suggestions I've used this earlier in the code mCoolObject.CoolEvent..

What is the best way to build XML in C# code? [closed]

http://stackoverflow.com/questions/284324/what-is-the-best-way-to-build-xml-in-c-sharp-code

C#. Edit With the help of Shog9 I just learned about the community wiki feature and happily turned it on. If you like a particular..

How do the major C# DI/IoC frameworks compare?

http://stackoverflow.com/questions/4581791/how-do-the-major-c-sharp-di-ioc-frameworks-compare

of clear and concise syntax consistent documentation good community support and performance are all important factors in my choice...

Comparison between XNA and DirectX (C#)

http://stackoverflow.com/questions/514872/comparison-between-xna-and-directx-c

the XBox Live Arcade games have been developed by the XNA community. As far as C# DirectX as I recall Managed DirectX as it was..

What JSON library works well for you in .NET?

http://stackoverflow.com/questions/571168/what-json-library-works-well-for-you-in-net

be interested in hearing what JSON library folks in the community have been using inside of .NET I have a need to parse serialize.. on the json.org site but it's a fairly big list and the community is usually good at vetting out the contenders from the pretenders..

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

searches have turned up nill. I therefore appeal to the SO community for help. The issue is this we have a need to programmatically..

Should you obfuscate a commercial .Net application?

http://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application

may not have to buy a tool Visual Studio.NET comes with a community version of Dotfuscator. Other free obfuscation tools are listed..

Fake a form submission with C# WebClient

http://stackoverflow.com/questions/726710/fake-a-form-submission-with-c-sharp-webclient

this question I just used this http www.eggheadcafe.com community aspnet 2 69261 you can use the webclient.aspx share improve..

Eric Lippert's challenge “comma-quibbling”, best answer?

http://stackoverflow.com/questions/788535/eric-lipperts-challenge-comma-quibbling-best-answer

bring this challenge to the attention of the stackoverflow community. The original problem and answers are here . BTW if you did..

Maintaining an open Redis connection using BookSleeve

http://stackoverflow.com/questions/8645953/maintaining-an-open-redis-connection-using-booksleeve

for your answers . I want to share it with all of the community as a reference. Of course any corrections will be highly appreciated...

SGML parser .NET recommendations

http://stackoverflow.com/questions/1148083/sgml-parser-net-recommendations

Creating Virtual directory in IIS with c#

http://stackoverflow.com/questions/1243600/creating-virtual-directory-in-iis-with-c-sharp

The solution I thought of was to use the MSBuild Community Tasks to automate IIS in code with a mocked IBuildEngine. However.. WARNING e.Message var createWebsite new MSBuild.Community.Tasks.IIS.WebDirectoryCreate ServerName localhost VirtualDirectoryPhysicalPath..

Equivalent of __DATE__, __TIME__ macros in C#

http://stackoverflow.com/questions/1309164/equivalent-of-date-time-macros-in-c-sharp

script to write the date time into the file. The MSBuild Community Tasks project has a Time task that can be used for exactly this...

.NET XBox Live Account API

http://stackoverflow.com/questions/2564692/net-xbox-live-account-api

How to determine if an arbitrary URL matches a defined route

http://stackoverflow.com/questions/4748342/how-to-determine-if-an-arbitrary-url-matches-a-defined-route

community .html new controller FindYourNewRental action Community string url http www.website.com find your new rental northerncalifornia.. sacramento.html if url.IsRouteMatch FindYourNewRental Community do something OR if Request.Url.IsRouteMatch FindYourNewRental.. something OR if Request.Url.IsRouteMatch FindYourNewRental Community do something ADDED BONUS Because the RouteInfo class gives..

Facebook/ Twitter with dotnetopenauth? [closed]

http://stackoverflow.com/questions/4821747/facebook-twitter-with-dotnetopenauth

of me answering this question DotNetOpenAuth has a public Community Tech Preview CTP which is available to download . Download that..

ASP.NET MVC Cookie Implementation

http://stackoverflow.com/questions/6797350/asp-net-mvc-cookie-implementation

MyCookie app public static void SetCookie User user Community community int cookieExpireDate 30 HttpCookie myCookie new HttpCookie..

Free obfuscation tools for .NET [closed]

http://stackoverflow.com/questions/805549/free-obfuscation-tools-for-net

obfuscate strings in my application. I think Dotfuscator Community Edition doesn't obfuscate an application fully. c# .net obfuscation..

When Should a .NET Class Override Equals()? When Should it Not?

http://stackoverflow.com/questions/9709088/when-should-a-net-class-override-equals-when-should-it-not

Operator omits that statement although one post in Community Content repeats the assertion and references the older documentation...