6
I am implementing a program using C# with . net 3.5
I have the following code:
StringBuilder sb = new StringBuilder();
sb.Append(caminhoSalvarCobranca);
sb.Append(@"\Boleto ");
sb.Append(boleto.Sacado.Nome);
sb.Append(boleto.Boleto.DataVencimento.ToShortDateString);
The "boleto.Boleto.DataVencimento.ToShortDateString
" returns a string in the date format "dd/mm/yyyy". It would have some function to remove the bars ("/") and leave only the date (ddmmayya)?
I would like to be able to give you an extra positive vote for the link at the end of the reply.
– Oralista de Sistemas
@Renan thank you, that page and the page for T-SQL are really handy.
– Omni