예제 #1
0
 public FmtToken Format() =>
 this.TypeArguments.IsEmpty
         ? FmtToken.Single(this.Type, "type")
         : FmtToken.Concat(this.Type, FmtToken.FormatArray(this.TypeArguments, "<", ">"))
 .WithTokenNames("type", "genericParameters");
예제 #2
0
파일: TypeRef.cs 프로젝트: exyi/coberec
 public override FmtToken Format() => FmtToken.Single(TypeName, "typeName");