コード例 #1
0
ファイル: AbstractType.cs プロジェクト: marcusanth/GlmSharp
 /// <summary>
 /// Constructs an object of a given type
 /// </summary>
 public string Construct(AbstractType type, params string[] args) => $"new {type.NameThat}({args.CommaSeparated()})";
コード例 #2
0
ファイル: AbstractType.cs プロジェクト: marcusanth/GlmSharp
 /// <summary>
 /// Constructs an object of a given type
 /// </summary>
 public string Construct(AbstractType type, IEnumerable <string> args) => $"new {type.NameThat}({args.CommaSeparated()})";