コード例 #1
0
ファイル: DslEngine.cs プロジェクト: nigthwatch/rhino-dsl
 /// <summary>
 /// Initializes a new instance of the <see cref="DslEngine"/> class.
 /// </summary>
 public DslEngine()
 {
     Storage = new FileSystemDslEngineStorage();
     Cache = new DefaultDslEngineCache();
 }
コード例 #2
0
ファイル: DslEngine.cs プロジェクト: BITechnologies/rhino-dsl
 /// <summary>
 /// Initializes a new instance of the <see cref="DslEngine"/> class.
 /// </summary>
 public DslEngine(string engineName)
 {
     Storage = new FileSystemDslEngineStorage();
     Cache = new DefaultDslEngineCache();
     EngineName = engineName;
 }
コード例 #3
0
ファイル: DslEngine.cs プロジェクト: jjchiw/rhino-dsl
 /// <summary>
 /// Initializes a new instance of the <see cref="DslEngine"/> class.
 /// </summary>
 public DslEngine()
 {
     Storage = new FileSystemDslEngineStorage();
     Cache   = new DefaultDslEngineCache();
 }