Exemplo n.º 1
0
 private static string BuildPropertyTypeFromPredefinedTypeSyntax(PredefinedTypeSyntax predefinedNameSyntax)
 {
     return(TypeMapper.MapType(predefinedNameSyntax.Keyword.Text));
 }
Exemplo n.º 2
0
 private static string BuildPropertyTypeFromIdentifierNameSyntax(IdentifierNameSyntax identifierNameSyntax)
 {
     return(TypeMapper.MapType(identifierNameSyntax.Identifier.Text));
 }