Posts by Johnny Santos • 71 points
3 posts
-
0
votes2
answers399
viewsA: What is the Visualg extension for Github?
Visualg saves your scripts with the extension .por that think which is also used by Portugol Studio, however, even if you send your files with this extension, I believe that it will not be…
-
2
votes2
answers369
viewsA: How to change project type on Github by Visual Studio
This is automatic, based on the highest percent code per language. As soon as you do more pushs code C# it will change itself :)
-
5
votes3
answers269
viewsA: I need to sort a list in order that seems unusual
For this specific case I recommend you make a IComparer<T>. public class MyStringComparer : IComparer<string> { public int Compare(string x, string y){ string[] xs = x.Split('.'), ys =…