/// Input Parameter: Synapses with permanences above this value are connected.
///
int connectedPerm;
public int ConnectedPermanence
{
get { return connectedPerm; }
set
{
this.connectedPerm = value
}
}
the summary isn't applied to the public property and can't be seen as its documentation, so please try to make it like this
int connectedPerm;
///
/// Input Parameter: Synapses with permanences above this value are connected.
///
public int ConnectedPermanence
{
get { return connectedPerm; }
set
{
this.connectedPerm = value
}
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Guys, attention!
if you write something like this
the summary isn't applied to the public property and can't be seen as its documentation, so please try to make it like this
Thanks for the tip! I really didn't know about this.
Last edit: David Ragazzi 2013-03-18