c# Programming Glossary: issues
How can a Word document be created in C#? [closed] http://stackoverflow.com/questions/10412/how-can-a-word-document-be-created-in-c the XML based office generation formats as there are know issues when using Office Automation on a server . However if you are..
A generic error occurred in GDI+, JPEG Image to MemoryStream http://stackoverflow.com/questions/1053052/a-generic-error-occurred-in-gdi-jpeg-image-to-memorystream detail to the exception. The reason this causes so many issues is the lack of explanation System.Runtime.InteropServices.ExternalException..
Set focus on textbox in WPF from view model (C#) & wPF http://stackoverflow.com/questions/1356045/set-focus-on-textbox-in-wpf-from-view-model-c-wpf to post on Stackoverflow . The best way to track down issues with Focus is... debugging .Net source code. No kidding. It..
Volatile vs. Interlocked vs. lock http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock As volatile doesn't prevent these kind of multithreading issues what's it for A good example is say you have 2 threads one which..
Complex UI inside ListBoxItem http://stackoverflow.com/questions/15532639/complex-ui-inside-listboxitem application wrapped in an ElementHost. This has its own issues but I think it's the cleanest way to get the desired effect...
How slow are .NET exceptions? http://stackoverflow.com/questions/161942/how-slow-are-net-exceptions happen often unless you've got significant correctness issues and if you've got significant correctness issues then performance.. issues and if you've got significant correctness issues then performance isn't the biggest problem you face. share..
How do I hide a process in Task Manager in C#? http://stackoverflow.com/questions/187983/how-do-i-hide-a-process-in-task-manager-in-c you have preferably in C# or any other techniques or any issues in going with this route. Update1 Most of the users have admin..
Best Practice for Forcing Garbage Collection in C# http://stackoverflow.com/questions/233596/best-practice-for-forcing-garbage-collection-in-c-sharp this should be avoided because it may create performance issues. However if you can reliably test your code to confirm that..
FileSystemWatcher vs polling to watch for file changes http://stackoverflow.com/questions/239988/filesystemwatcher-vs-polling-to-watch-for-file-changes used both methods in the past but not extensively. What issues performance reliability etc. are there with either method c#..
When to Use Static Classes in C# http://stackoverflow.com/questions/241339/when-to-use-static-classes-in-c-sharp classes as part of a strategy pattern. We might patch some issues up by passing delegates instead of interfaces . Testing This..
ObservableCollection that also monitors changes on the elements in collection http://stackoverflow.com/questions/269073/observablecollection-that-also-monitors-changes-on-the-elements-in-collection event on the class marked with new . This would have a few issues which I'll try to illustrate with the sample below work on original..
What static analysis tools are available for C#? [closed] http://stackoverflow.com/questions/38635/what-static-analysis-tools-are-available-for-c static analysis tools for testing code for multithreading issues deadlocks race conditions etc. also seem a bit scarce. Typemock..
Best practices for exception management in Java or C# http://stackoverflow.com/questions/409563/best-practices-for-exception-management-in-java-or-c-sharp how to handle exceptions in my application. Much if my issues with exceptions comes from 1 accessing data via a remote service..
Case insensitive 'Contains(string)' http://stackoverflow.com/questions/444798/case-insensitive-containsstring just silly. UPDATE The sillyness I refer to is the i18n issues that come with up and down casing. c# contains case insensitive..
Tree data structure in C# http://stackoverflow.com/questions/66893/tree-data-structure-in-c-sharp Perhaps through a strategy pattern to solve the issues presented in the article. I feel a bit silly implementing my..
Replacing .NET WebBrowser control with a better browser, like Chrome? http://stackoverflow.com/questions/790542/replacing-net-webbrowser-control-with-a-better-browser-like-chrome the zillion buffer overflow problems to be fixed and other issues. I am using Visual Studio C# express edition does it make any..
Is there a way to check if a file is in use? http://stackoverflow.com/questions/876473/is-there-a-way-to-check-if-a-file-is-in-use this code for the past several years and I haven't had any issues with it. Understand your hesitation about using exceptions but..
C# Finalize/Dispose pattern http://stackoverflow.com/questions/898828/c-sharp-finalize-dispose-pattern this for a while now. And I am still confused about some issues. My questions below I know that you only need a finalizer if..
ExecuteReader requires an open and available Connection. The connection's current state is Connecting http://stackoverflow.com/questions/9705637/executereader-requires-an-open-and-available-connection-the-connections-curren a great chance for these locks which causes performance issues at best. Actually sooner or later you'll get many different..
Entity Framework Code-First Issues (SimpleMembership UserProfile table) http://stackoverflow.com/questions/12502004/entity-framework-code-first-issues-simplemembership-userprofile-table Framework Code First Issues SimpleMembership UserProfile table If you've used ASP.NET MVC..
XML serialization of interface property http://stackoverflow.com/questions/1333864/xml-serialization-of-interface-property the wheel for all the other properties on the class Issues of duplication of effort are similar to the first. Modify your..
XML Serialization and Inherited Types http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types to do special things in the concrete classes. Identified Issues Points to Note XmlSerializer does some pretty cool reflection..
Find unused code http://stackoverflow.com/questions/245963/find-unused-code this. Right click on your solution and selection Find Code Issues . One of the results is Unused Symbols . This will show you..
Sharepoint web services — The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM' http://stackoverflow.com/questions/2608887/sharepoint-web-services-the-http-request-is-unauthorized-with-client-authenti ListsWebService Write the code in program.cs I have an Issues list here Here is the code. using System using System.Collections.Generic.. _vti_bin Lists.asmx XmlNode node listsWebSvc.GetList Issues catch Exception ex Console.WriteLine ex.ToString Visual..
Passing multiple parameters to controller in ASP.NET MVC; also, generating on-the-fly queries in LINQ-to-SQL http://stackoverflow.com/questions/488061/passing-multiple-parameters-to-controller-in-asp-net-mvc-also-generating-on-th public ActionResult Open string sort var Issues from i in db.Issues where i.Status Open orderby i.TimeLogged.. ActionResult Open string sort var Issues from i in db.Issues where i.Status Open orderby i.TimeLogged ascending select i.. i.TimeLogged ascending select i switch sort case ID Issues from i in db.Issues where i.Status Open orderby i.ID ascending..
Issues Doing a String Comparison in LINQ http://stackoverflow.com/questions/578231/issues-doing-a-string-comparison-in-linq Doing a String Comparison in LINQ I'm having trouble getting..
Printing from a .NET Service [closed] http://stackoverflow.com/questions/7990/printing-from-a-net-service it as an image to a memory stream which I will then print. Issues with that are Multi page printing will be a big headache. Still..
|