As you may know, Microsoft is getting into the open source community with the ASP.NET and DNX with the mono project.
The .NET Execution Environment (DNX) is a software development kit which allows you to run .NET applications on Windows, Mac, and Linux using different frameworks such as .NET framework, .NET Core, and Mono. However, everything are not roses. There are many incomplete libraries, incompatibilities, lack of documentation, and most of the examples such as doing SQL or SOAP do not work depending on which the library targets you are planning to code for. Therefore, I decided to test the basics on all the library targets. I am starting with DNX451.
Extension methods seems to be working fine in DNX451 with C#. Below is a code example for those who wish to play with it.
Program.cs
using System; namespace ConsoleApp1 { public class Program { public void Main(string[] args){ Console.WriteLine("Main()"); displayWhichDnxIsCompilingOn(); new ExtensionMethodsExample.ExtensionMethodsExample(); } private void displayWhichDnxIsCompilingOn(){ #if DNX451 Console.WriteLine("Compiled on DNX451: .NET Framework"); #endif #if DNXCORE50 Console.WriteLine("Compiled on DNXCORE50: .NET Core 5"); #endif } } } |
ExtensionMethodsExamples.cs
using System; namespace ExtensionMethodsExample { public class ExtensionMethodsExample { public ExtensionMethodsExample(){ Console.WriteLine("\nExtensionMethodsExample()"); var p = new Person { Name = "Pedro", Age = 32 }; p.SayHello(); } } public class Person{ public string Name; public int Age; } public static class Extensions { public static void SayHello(this Person person){ Console.WriteLine("{0} says hello!", person.Name); } } } |
Output:AGCRM-MacBook-Pro:Examples user$ dnx . me Main() Compiled on DNX451: .NET Framework ExtensionMethodsExample() Pedro says hello! |
© 2015, Alejandro G. Carlstein Ramos Mejia. All rights reserved.