Write standards-compliant C# programs in Linux with DotGNU

Conclusion

Several books and tutorials on C# can be found on the Internet. The advantage of DotGNU is that it is completely standards compliant; therefore, you can use documentation from Microsoft's C# library. To get things done faster, you can use front ends, such as Microsoft's Visual Studio and Mono's MonoDevelop IDE [3]. But if you want to write truly portable code with DotGNU, you'll have to be extra careful with these tools and make sure you stay away from features unique to a particular platform.

Languages and Libraries

C# borrows a bit from several popular languages, including C, C++, and Java. If you've programmed in Java, you'll find that, in C#, you can have a class name with a name that's not the same as the source file. Similar to Java, and unlike the C languages, C# doesn't have header files. Plus, you have the flexibility of either importing a namespace or specifying it fully when using a function like System.Console.Writeline. Again, this has the Java footprint all over it.

Also note that the C++ :: operator isn't required in C#. The task of referencing class members is accomplished with the dot (.) operator.

All the most important C# libraries are implemented in DotGNU. The library lineup includes the core System library that (among other things) contains classes for handling data types, the System.Collections library that helps define and traverse objects such as lists and arrays, System.IO for reading and writing streams and files, System.Net for network programming, System.Security for making your programs respect permissions, and, of course, System.Windows.Forms for creating GUIs.

However, some libraries are not directly available, such as System.Data, which provides classes to implement the ActiveX Data Object, or ADO for reading and writing data from various data stores such as databases. But you can use the ADO library via the ml-pnet package.

DotGNU-specific definitions for the packaged libraries are available online [4], although they are not complete, and it is possible that a function might not be defined there but available nonetheless. Some of the libraries do have missing constructs and methods, and you can also learn more about these elements online [5]. However, this information might not be up to date.

The Author

Mayank Sharma has written for various Linux publications, including Linux.com, IBMdeveloperWorks, and Linux Format, and he has published two books through Packt on administering Elgg and Openfire. Occasionally he teaches FLOSS technologies. You can reach him at: http://http://www.geekybodhi.net.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Mono and DotGNU

    The Open Source projects Mono and DotGNU open Microsoft’s .NET platform to Linux developers. This article investigates how well-suited these alternative implementations are for building simple GUI applications.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News