示例#1
0
 /// <summary>
 /// Creates a new Blackboard instance with the specified parent.
 /// </summary>
 /// <param name="parent">Blackboard instance that is the parent of
 /// the new instance. Can be null.</param>
 public Blackboard(Blackboard parent)
 {
     Parent = parent;
     _dataTable = new Dictionary<string, object>();
 }