background preloader

.net

Facebook Twitter

Dan Fernandez's Blog : Visual Studio 2005 Express Announcem. Evangelism - Developer and Platform Evangelism WebMatrix & Razor: A new option for beginning developers We' just announced WebMatrix, a new, simple IDE to build and customize Web sites. As someone who... Date: 07/06/2010 Correcting Grammar for Microsoft Products and Technology I see book authors, editors, bloggers, press, team members, and occasionally even a VP misspell our... Date: 04/27/2010 Happy Valentine’s Day from Channel 9! Yes, it’s Valentine’s day on Channel 9, time to have some more fun. Date: 02/14/2010 Bug Killer - A Channel 9 Halloween Special! Check out Laura Foy’s “Bug Killer”, a Channel 9 Halloween special.

Date: 10/30/2009 Visual Studio Documentary Part 1 & Part 2 I'm the last person to blog about this, but we've launched the Visual Studio documentary on Channel... Date: 10/27/2009 Download Visual Studio Express Editions Updated 3/31/2015 While this post was originally written in 2009, it still gets a ton of hits!... Date: 10/21/2009 My Picks for PDC 2009 Date: 10/13/2009 PDC Recap. CodeSmith Tools - The best .NET template based source code gener. Oauth-dot-net - Google Code. OAuth.net is a .net library which provides full OAuth consumer and provider support. The library facilitates secure API authentication in a simple and standard method for desktop and web applications. OAuth allows user to grant and deny one application access to the data stored in another application. It forms one of the foundation blocks of the data portability concept, which has the aim of allowing users to easily move their personal data around the web.

More information at lab.madgex.com Download Source code OAuth.net-0.8.1.1-source.zip 4.6 MB Release History (ChangeLog) Release Version 0.8.1.1 - 18th June 2010 Release Version 0.7.1.0 - 5th August 2009 Release Version 0.7.0.0 - 18th June 2009 Release Version 0.6.0.0 - 9th April 2009 Release Version 0.5.2 - 12 March 2009 XRDS-Simple.net Released Version 0.6 - 12th January 2008 Released Version 0.5.1 - 26th September 2008 Released Version 0.5 - 5th September 2008 Contact: oauth-dot-net@madgex.com. Wicked Code: Asynchronous Pages in ASP.NET 2.0 -- MSDN Magazine,

Dynamically creating Applications using System.CodeDom. The article provides an insight on how to create and compile assemblies dynamically. Introduction The System.CodeDom namespace in .net allows the users to dynamically compile and create assemblies. This concept is used by ASP.NET internally. The article provides an insight on how to create assemblies dynamically. The following are the list of classes, which would be used to create the assembly: CodeNamespace CodeTypeDeclaration CodeCompileUnit CodeEntryPointMethod CodeMemberField CodeMemberProperty CodeMemberMethod CodeParameterDeclarationExpression CodeCompileUnit CompilerParameters CodeSnippetExpression CodeExpressionStatement Step 1: Add the following namespace declarations, using System;using System.CodeDom; using System.CodeDom.Compiler; The System.Codedom namespace contains the classes/types necessary to create assemblies at runtime.

Step 2: Create the following class, public class CCodeGenerator{CodeNamespace mynamespace;CodeTypeDeclaration myclass;CodeCompileUnit myassembly;} Step 3: Logging method name in .NET - The Code Project - .NET. MethodLogger - Hook into method calls in .NET binaries - The Cod.