Hello.
Some other generalizations of how to use Encog.
For getting result of network you can use Compute method:
var output = network.Compute(input);
If we want to get result of bigger number of items, we can use following construction
foreach(var item in trainingSet)
{
var output = netwo...