What is .NET?
Andy Mc's .NET Framework FAQNET is a general-purpose software development platform, similar to Java. At its core is a virtual machine that turns intermediate language (IL) into machine code. High-level language compilers for C#, VB.NET and C++ are provided to turn source code into IL. C# is a new programming language, very similar to Java.
When was .NET announced?
Andy Mc's .NET Framework FAQBill Gates delivered a keynote at Forum 2000, held June 22, 2000, outlining the .NET 'vision'. The July 2000 PDC had a number of sessions on .NET technology, and delegates were given CDs containing a pre-release version of the .NET framework/SDK and Visual Studio.NET.
What versions of .NET are there?
Andy Mc's .NET Framework FAQThe final versions of the 1.0 SDK and runtime were made publicly available around 6pm PST on 15-Jan-2002. At the same time, the final version of Visual Studio.NET was made available to MSDN subscribers. NET 2.0 was released to MSDN subscribers in late October 2005, and was officially launched in early November.
Why did they call it .NET?
Andy Mc's .NET Framework FAQI don't know what they were thinking. They certainly weren't thinking of people using search tools. It's meaningless marketing nonsense.
How can I become a registrar for .net?
CORE++ FAQ - Frequently Asked QuestionsYou have to become ICANN-accredited. You can find detailed information on the process, documents, qualifications, and financial considerations involved at the following link:
What is Net Development?
HUD PS FAQ - Non-Profit ProgramNet Development Cost is a calculation applied to HUD properties sold at a discount of 10 percent or more. It applies to government entities and qualified nonprofit organizations that have been pre-approved by HUD to purchase HUD Homes. Non-profit organizations and government entities must pass on the discount received from HUD to increase homeownership opportunities for low- and moderate-income families and individuals.
What else is out there on the Net?
PGG : faq : Project Galactic Guide FAQBesides the on-line Galactic Guide, the PGG mailing list and the PGG Crap Books, PGG also maintains the following Official Attractions: This is the official Web site of Project Galactic Guide. It's where you can find all relevant information relative to the Project: from the latest on-line version of this FAQ (http://megadodo.com/faq/) to the online article database (http://megadodo.com/articles/).
Can I write my own .NET host?
Andy Mc's .NET Framework FAQYes. For an example of how to do this, take a look at the source for the dm.net moniker developed by Jason Whittington and Don Box. There is also a code sample in the .NET SDK called CorHost.
Is ATL redundant in the .NET world?
Andy Mc's .NET Framework FAQYes. ATL will continue to be valuable for writing COM components for some time, but it has no place in the .NET world.
How does .NET remoting work?
Andy Mc's .NET Framework FAQNET remoting involves sending messages along channels. Two of the standard channels are HTTP and TCP. TCP is intended for LANs only - HTTP can be used for LANs or WANs (internet). Support is provided for multiple message serializarion formats. Examples are SOAP (XML-based) and binary. By default, the HTTP channel uses SOAP (via the .NET runtime Serialization SOAP Formatter), and the TCP channel uses binary (via the .NET runtime Serialization Binary Formatter).
How can I get at the Win32 API from a .NET program?
Andy Mc's .NET Framework FAQUse P/Invoke. This uses similar technology to COM Interop, but is used to access static DLL entry points instead of COM objects. Here is an example of C# calling the Win32 MessageBox function: using System; using System.Runtime.InteropServices; class MainApp { [DllImport("user32.dll", EntryPoint="MessageBox", SetLastError=true, CharSet=CharSet.
