InfoQ Homepage .NET Content on InfoQ
-
MonoDevelop 3.0 – Better Code Completion, Performance, Quick-Fix Suggestions
MonoDevelop 3.0 has been released and there are several new features that focus on performance and developer productivity, especially for C# developers.
-
Xamarin’s Mono for Android Now Includes a Visual Designer
Xamarin has announced a visual designer for their Mono for Android development tool integrated with Visual Studio or MonoDevelop.
-
Entity Framework 5 Sample Provider
The EF team at Microsoft has announced a sample database Provider Entity Framework 5 for SQL Server, with support for some of the new EF features.
-
AWS Beanstalk For .NET, RDS For SQL Server
Amazon has announced support for .NET on AWS Elastic Beanstalk and a new RDS service for SQL Server, bringing better manageability to .NET/SQL Server apps hosted on AWS.
-
Hadoop And Microsoft
Want to try out Hadoop with the Microsoft Stack and figure out what capabilities this brings to you? We point to some resources that can help.
-
Running Java on NET/Mono: Jeroens Frijters Discusses IKVM.NET
Microsoft's Erik Meijer recently discussed IKVM.NET with creator Jeroens Frijters to discuss the history of the project and explore how it makes running Java code on .NET and Mono possible.
-
Localizing Your Windows 8 App
In the article “Develop your app for everyone–localize your UI”, Tim Heuer shows how to localize the language of a Windows 8 .NET App along with various tools that can help in the process.
-
Code Analysis with Project Roslyn
Microsoft's Dustin Campbell recently presented a survey of Project Roslyn and provided a demonstration of sample code showing how the project enables Visual Studio to refactor code according to user-defined behaviors.
-
Compilify – Compile .NET Code In A Browser
Compilify is an online compiler as a service, started by Justin Rusbatch, which works on top of the Roslyn CTP. Started recently, it has already received significant attention from enthusiasts, much more than the creator expected. We got in touch with Justin to understand how it works under the covers.
-
Modern C++ vs Managed Code: Performance vs Productivity
Herb Sutter and Miguel de Icaza have recently weighed in on the tradeoffs made by C++ and the managed code from .NET or Java. Does increasing programmer productivity require a reduction in the performance of compiled code?
-
Command Pattern In .NET
In Command Pattern, an object is used to represent and encapsulate all the information needed to call the method at a later time – method name, object that owns the method and values for the parameters. In the first part of an article series “The Command Pattern In .NET”, Eric Vogel walks through using the ICommand interface in the context of WPF applications.
-
Microsoft Redefines AnyCPU for Visual Studio 11 and .NET 4.5
Visual Studio 11 and .NET 4.5 are changing the default runtime platform.
-
Entity Framework 5 - Performance Considerations
While Entity Framework (EF) 5 promises to bring significant performance improvements over EF 4, there are still some considerations to be aware of to use the ORM effectively – namely, View generation, Caching, auto-compiled queries, Query execution options and Design-time considerations.
-
Interview: James Newton-King on Json.NET 4.5
The Json.NET project just released version 4.5 of their JSON framework for .NET which includes many new features and a dramatic speed enhancement. InfoQ recently spoke with Json.NET creator James Newton-King about the new release and the project as a whole.
-
Use Faker.NET To Fake Your Data
Faker is an open source C# port of the Ruby Faker gem mainly used to easily generate fake (but presentable) data – names, addresses, phone numbers, etc. Handy, whether its for demonstration purposes or for creating test data.