1
vote
4answers
58 views
Refactor this C# code to a more elegant version
I am trying to refactor this code into a more elegant version. Can anyone please help.
The issue is where to as sign the first evaluation result for comparision later on?
And I want to eliminate …
0
votes
0answers
3 views
Handling conflict with entity group transactions in Azure
I'm currently writing a method which, in order to reduce transaction costs, inserts entities into Azure Table Services in batches of 100.
The entities inserted are immutable. I.e. if the PartitionKey …
0
votes
0answers
1 views
WCF HTTPS and HTTP bindings with single web.config
Is there any way I can accomplish the following:
Single Web.config file for a .net web application.
the web application exposes a number of WCF services for consumption by javascript.
Production …
0
votes
5answers
73 views
What is best practice naming for private methods?
I was taught that private methods should begin with lowercase for example:
thisIsBestPractice
I've installed some code style checkers, and they're suggesting private methods should begin with upper …
0
votes
0answers
2 views
I added an Infragisitcs control, and now my Wcf services are not loading.
Greetings All,
I recently added an Infragisitcs WebDropDown to my WebApplication. This application uses serveral WCF ajax services. The services have always worked with no issues. Now since I added …
0
votes
1answer
11 views
Save Sharepoint Data outside of Lists
What is the best way to store your Data outside of SharePoint. I want to use the default Edit/View options in SharePoint (though I do plan on extending their functionality). I need to store the data …
0
votes
2answers
12 views
How would I parse a filename from a location I grab from a table before it’s bound to the dropdownlist?
So in one of my tables, there lies an image file location. I'm grabbing that information to be displayed in an asp:dropdownlist, however, I want just the name of the image to be displayed. How/Where …
0
votes
4answers
67 views
Simulating mouse movement (C#)
How would I go about making a small program that keeps moving the mouse upwards?
For those who would like to know, tt's a tiny one-use thing. I'm playing Star Wars The Force Unleashed. In console …
0
votes
1answer
193 views
BindingSource sees changes, DataTable doesn’t
I have recently switched over from Java/RMI to C# / .net, and am working on my first project using databinding to update records in Oracle. On this first form I'm building, I have a detail view for …
0
votes
2answers
73 views
How to detect the context from which an application is being executed? Whether from Command Prompt or from within a Windows Form
I am trying to run a set of test cases through one of our internal applications. I need to be able to automate these tests and run them through the command line and log various things. The problem is …
2
votes
4answers
88 views
C#, how can I catch a 404?
I have the following code:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "HEAD";
request.Credentials = MyCredentialCache;
try
…
2
votes
3answers
33 views
Effective pattern for getting progress info about a method that long time in WCF?
I want to get progress updates about a method called on WCF.
For example I run 1000 queries and want to know the current status.
1
vote
3answers
96 views
Is there a fiber api in .net?
Out of more curiosity than anything I've been looking for a set of C#/.net classes to support fibers/co-routines (the win32 version) and haven't had any luck.
Does anybody know of such a beast?
2
votes
2answers
37 views
Should I inherit or subscribe to events?
If I create a Abstract BaseForm for my Windows application, I can use it to do common things when the application's forms are loaded. I can also override the OnLoad method, or I subscribe to the Load …
0
votes
5answers
47 views
Determinate when an object not used by any other threads without lock?
Hi
I implementing a high performance thread safe component, using no lock statements, only volatile and Interlocked are used for performance reasons.
I have volatile reference-type member in a …
