Posts by Ícaro Dantas • 1,088 points
53 posts
-
0
votes5
answers554
viewsA: Error passing URL as parameter... Joeblogs & Htmlagilitypack
I may be talking nonsense, but try putting ex: var website = LeitorDeXML(new Uri("http://SITE ORIGEM/")).ToArray();
-
5
votes2
answers212
viewsQ: Does the user need to have . NET if I compile using Mono?
The user who will use my application needs to have the version of . NET on the PC? I saw in some topics on the internet talking about this advantage of Mono.
-
-4
votes1
answer159
viewsQ: Improve the performance of a pointer method
Here’s the code working: string string_pick(string text, string tag, char caractere) { int index = text.IndexOf(tag); return text.Substring(index + tag.Length, text.IndexOf(caractere, index +…