Nn.Neuron.getWeigth C# (CSharp) Method

getWeigth() public method

public getWeigth ( int position ) : double
position int
return double
        public double getWeigth(int position)
        {
            if (inputs.Count > position)
                return inputs[position].weight;
            else
            {
                Debug.Log("getInput :try to get input in a too high position");
                throw new IndexOutOfRangeException();
            }
        }
        public double getBias()