Posts by Marcelo Cardoso • 11 points
2 posts
-
0
votes2
answers42
viewsA: How to standardize the phone input in a Textbox C#
Good afternoon! I would use maskedTextBox instead of textbox. Example: Placing the following properties: Typing: Copying and Pasting:…
c#answered Marcelo Cardoso 11 -
0
votes2
answers66
viewsA: How to get specific text from a txt file in C#?
class Program { static void Main(string[] args) { string arquivo = @"C:\temp\teste.txt"; if(File.Exists(arquivo)) { try { string[] listTxt = File.ReadAllLines(arquivo); var strList = listTxt[13];…