If you miss your days of programming close to the metal (not that I ever had such days), you'll undoubtedly want to write .NET programs in assembly language. Now you can, thanks to bjarke, who has created an assembler that compiles 80386 assembly language into IL. However, you might be disappointed to hear that it supports only ASP.NET, oh well. For the curious, here's an .aspx page in assembly langauge:<%@ page language="Asm80386" %>
<%
Str: DB "Testing...", 0
mov eax, -2
cmp eax, 2
jle Label1
xor eax, eax
Label1:
lea esi, Str
push esi
call "Response.Write(string)"
pop esi
%>
<br>EAX: <%= eax %>
Via Charles Miller