Search Results

1
vote

Proper way to stop TcpListener

Sockets provide powerful asynchronous capabilities. Take a look at Using an Asynchronous Server Socket Her …
1
vote

How to make a class protected for inheritance?

In general you should mark your type with sealed keyword in case you want prevent derivation. However is some cases it is not appropriate. For example, you want to allow types from your assembly to …
0
votes

Linq Syntax issue

Could you please tell me what is the type of currentCursorPosition variable? For example, if it is of long type compiler will choose to use Equals(object) overload of Int32 and in …
0
votes

Global Variables Bad

Basically there are other mechanisms that can lead to global variables introduction: AppDomain.GetData/AppDomain.SetData pair - Gets/Sets the value stored in the current application d …
0
votes

Getting started with socket programming in C# - Best practices

Consider using asynchronous sockets. You can find more information on the subject in Using an Asynchron …
0
votes

Possible overuses of Extension Methods

I agree with jasonh. In general it may be helpful to think of extension methods not from the point on when not to use them but when to use them and it will be easier to spot wrong usage. …
2
votes

EF ObjectContext, Service and Repositry - Managing context lifetime.

Hi Nathan. I will go from top (presenter) and describe the relations between participants. Presenter gets service object through dependency. Service functionality is outlined using …
0
votes

Protecting class in a namespace

Basically within namespace your types can have either public or internal accessiblity. On the other hand nested types within classes can have private accessibility. As long as your utility type is …
3
votes

Casting vs Converting an object toString, when object really is a string

Basically in your case it is better to leave type cast because .ToString() may hide bugs. For example, your data base schema changed and name is no longer of string type but with .ToString() your c …
1
vote

Keeping track number of connected users to WCF service?

You can create your implementation of IInstanceContextInitializer …
0
votes

Formatting trace output

Consider using The Logging Application Block …
4
votes

C# ?: Conditional Operator

The type of the operator will be object and in case the result must be 0 it will be implicitly boxed. But 0 literal is by default has int type so you box int. But with explicit cast to decimal you …
2
votes

How to get the data value of an enum in a generic method?

You can do it like this (change DataUtil.ToByte(x) to x.ToByte(null)): public static object EnumToDataSource<T>() where T : struct, IConvertible { if (!typeof (T).I …
0
votes

What is CreateNewAttribute in C#?

It belongs to ObjectBuilder - dependency injection container. …
1
vote

C# Circular Dependency Problem Solving Technique

Point your attention to Dependency Inversion Principle. …

1 2 3 4 next
15 30 50 per page