Loading ...

Concurent Collections Of C

Hello everybody, today I want to write few words about Concurent collections in C#. First of all  I want to point there there are only four of them: ConcurrentDictionary ConcurrentQueue ConcurrentStack ConcurrentBag BlockingCollection Partitioner EnumerablePartitionerOptions IProducerConsum...

Features Of System Reflection

Hello everybody, today I want to document few features of System.Reflection namespace. It has following important types: Type ( with methods GetType, GetMemberInfo, GetPropertyInfo, GetFieldInfo ), Activator ( with method CreateInstance ), Assembly ( Load, LoadFrom, GetTypes, GetName, GetFiles ),...

Ema In Jforex Full Code

Hello everybody, recently one of my readers asked me to show whole code of taking value of ema. Here it is: package jforex; import java.util.*; import com.dukascopy.api.*; public class CountSamples implements IStrategy { private IEngine engine; private IConsole console; private IHistory hi...

How To Make Sales

Recently friend of mine shared with me how he makes sales.  Here is his algorithm: Introduce to your potential customer ( linkedin, facebook ) Send useful advices Send 3 useful advices according to your topic of activity Call to him. It shouldn't be call for sales. Just clarify what questio...

Interception

Hello everybody, today I want to write few words about Interception. First of all one of the questions that requires consideration can be why we may need interception at all? Need in interception arises in cases when we have some kind of logic, that is dispersed around whole application. Some can...