AllBASIC Forum
BASIC Developer & Support Resources => Compilers => Topic started by: John on October 08, 2018, 07:50:26 PM
-
How Microsoft rewrote its C# compiler in C# and made it open source. (https://medium.com/microsoft-open-source-stories/how-microsoft-rewrote-its-c-compiler-in-c-and-made-it-open-source-4ebed5646f98)
Metaprogramming
Metaprogramming via C# attributes is part of the language. Many of these attributes duplicate the functionality of GCC's and VisualC++'s platform-dependent preprocessor directives.
Do I smell a C# BASIC with this? 8)
MonoDevelop enables developers to quickly write desktop and web applications on Linux, Windows and macOS. It also makes it easy for developers to port .NET applications created with Visual Studio to Linux and macOS maintaining a single code base for all platforms.
MonoDevelop Website (https://www.monodevelop.com/)
Roslyn provides open-source C# and Visual Basic compilers with rich code analysis APIs. It enables building code analysis tools with the same APIs that are used by Visual Studio.
A Tour of the C# Language (https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/index)
-
I installed MonoDevelop and the Mono framework for Ubuntu 18.04. A very nice IDE / Designer for Linux.
jrs@jrs-laptop:~/Projects/hello_csharp/hello_csharp/bin/Debug$ ls -l
total 12
-rwxr-xr-x 1 jrs jrs 4608 Oct 9 02:08 hello_csharp.exe
-rw-rw-r-- 1 jrs jrs 420 Oct 9 02:08 hello_csharp.pdb
jrs@jrs-laptop:~/Projects/hello_csharp/hello_csharp/bin/Debug$ time ./hello_csharp.exe
Hello World!
real 0m0.049s
user 0m0.034s
sys 0m0.016s
jrs@jrs-laptop:~/Projects/hello_csharp/hello_csharp/bin/Debug$
(https://allbasic.info/picture_library/MonoDevelop_Hello.png)
I'm looking forward to trying VB.NET on Linux.
-
I would invest time learning C# before Node.js. (JavaScript on the server)
I think Microsoft out did Apple and Swift.