Artificial Intelligence
Artificial Intelligence
Information

KnowledgeBase.BaseName property


      Gets or sets the name of the knowledge base.


Namespace : ielib
Assembly : ielib.dll

public string BaseName { set; get; }

Property value

Type : System.string

A string that defines the name of the database.


Example : Change the name of a knowledge base.


KnowledgeBase kb = new KnowledgeBase("kbase.xml");

kb.BaseName = "other base";
kb.Save();