Esempio n. 1
0
 public static Configuration DefineWith(Properties properties)
 => new Configuration(properties, false);
Esempio n. 2
0
 /// <summary>
 /// Answers a new <c>World</c> with the given <paramref name="name"/> and that is configured with
 /// the contents of the <paramref name="properties"/>.
 /// </summary>
 /// <param name="name">The <c>string</c> name to assign to the new <c>World</c> instance.</param>
 /// <param name="properties">The <see cref="Properties"/> used for configuration.</param>
 /// <returns>A <c>World</c> instance.</returns>
 public static World Start(string name, Properties properties)
 {
     return(Start(name, Configuration.DefineWith(properties)));
 }
Esempio n. 3
0
 public static Configuration DefineAlongWith(Properties properties)
 => new Configuration(properties, true);