Search 5,000,000+ questions and answers.

Frequently Asked Questions

What is .NET?

Andy Mc's .NET Framework FAQ
NET 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.
Related Questions

When was .NET announced?

Andy Mc's .NET Framework FAQ
Bill 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.
Related Questions

What versions of .NET are there?

Andy Mc's .NET Framework FAQ
The 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.
Related Questions

Why did they call it .NET?

Andy Mc's .NET Framework FAQ
I don't know what they were thinking. They certainly weren't thinking of people using search tools. It's meaningless marketing nonsense.
Related Questions

GIMP - Documentation
Net-fu is a web-based interface to a script-fu server. The work is done at a remote site. To see Net-fu, point your web browser at ftp://ftp.gimp.org/ or one of the miiror sites, and then go to "gimp/net-fu/". Any web browser can read net-fu pages; the browser must be Java-enabled to actually run Script-fu. Fonts
Related Questions

What are net carbs?

Metamucil: Frequently Asked Questions
Net carbs are digestible carbohydrates that affect blood sugar. To find out how many net carbs something has, you simply subtract the amount of dietary fiber from the total number of carbohydrates. (Also subtract the amount of sugar alcohol and glycerine if they are included in the total carbohydrates count.)
Related Questions

How can I become a registrar for .net?

CORE++ FAQ - Frequently Asked Questions
You have to become ICANN-accredited. You can find detailed information on the process, documents, qualifications, and financial considerations involved at the following link:
Related Questions

What is Net Development?

HUD PS FAQ - Non-Profit Program
Net 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.
Related Questions

The Official XQuery FAQ
Unfortunately, Microsoft recently dropped XQuery support from .NET 2.0 - if you think this is a mistake, we urge you to sign our online petition in support of XQuery for all.
Related Questions

ASP & ASP.NET web hosting London & UK
NET is a software platform that enables programs to easily & safely run together. In place of a specific hardware / Operating System relationship, programs target the .NET environment & can then interoperate. .NET is also the name given to software built on the .NET platform. Components that form .NET are called the .NET Framework.
Related Questions

What else is out there on the Net?

PGG : faq : Project Galactic Guide FAQ
Besides 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/).
Related Questions

How will anyone find me on the Net?

Centrical Solutions
Internet users have 20 million Web sites to choose from, and more than two billion pages of content - and it's getting bigger by the day! It's very important that the people in your target market can find your site quickly and easily. By understanding how web users surf the Internet, we can optimize your website so they can find it in the Search Engine results (still the number one way that people find their way around the Net).
Related Questions

The Baller Herbst Law Group
I-Net is communications system capable of transmitting video, voice and/or data signals over optical fiber, coaxial cable, or both, among governmental, educational and possibly other non-residential users.
Related Questions

Paul Thurrott's SuperSite for Windows: Microsoft .NET FAQ
It's a dessert topping, it's a floor cleaner--it's a dessert topping and a floor cleaner! Actually, .NET is many things, but primarily it's a marketing term for a set of products and technologies that Microsoft is creating to move personal and enterprise computing beyond the PC desktop and into a distributed Internet-based environment. So .NET--which was originally called Next Generation Windows Services (NGWS)--is also a platform, one that Microsoft sees as the successor to Windows. The .
Related Questions

LookOut Software Inc.
Microsoft® .Net is a set of Microsoft software technologies for connecting data, systems, devices and people within your business, as well as partners and customers. It enables an unprecedented level of software integration through the use of XML web services: small discrete, building-block applications that connect to each other - as well as to other, larger applications - via the Internet.
Related Questions

MaduraiDotNet
Well, I really don't want to bore you with a proper technical answer..so here's my own , very unofficial answer....NET is a framework which lets you write some amazingly cool software and web applications very easily. What is a framework? Well..it basically means that Microsoft has done a lot of work for you...you have to write much less code because somebody has already done your work for you.And oh yeah....you can use any programming language you want :-) The .
Related Questions

Aviom Frequently Asked Questions
A-Net is Aviom's proprietary digital audio networking protocol. It's the technology that connects all Aviom products and ensures the fast and reliable performance.
Related Questions

GIMP User FAQ
Net-fu is a web-based interface to a script-fu server. The work is done at a remote site. To see Net-fu, point your web browser at ftp://ftp.gimp.org/ or one of the miiror sites, and then go to "gimp/net-fu/". Any web browser can read net-fu pages; the browser must be Java-enabled to actually run Script-fu.
Related Questions

Can I write my own .NET host?

Andy Mc's .NET Framework FAQ
Yes. 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.
Related Questions

Is ATL redundant in the .NET world?

Andy Mc's .NET Framework FAQ
Yes. ATL will continue to be valuable for writing COM components for some time, but it has no place in the .NET world.
Related Questions

How does .NET remoting work?

Andy Mc's .NET Framework FAQ
NET 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).
Related Questions

How can I get at the Win32 API from a .NET program?

Andy Mc's .NET Framework FAQ
Use 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.
Related Questions

What size is a .NET object?

Andy Mc's .NET Framework FAQ
Each instance of a reference type has two fields maintained by the runtime - a method table pointer and a sync block. These are 4 bytes each on a 32-bit system, making a total of 8 bytes per object overhead. Obviously the instance data for the type must be added to this to get the overall size of the object. So, for example, instances of the following class are 12 bytes each: class MyInt { ..
Related Questions

What are the new features of .NET 2.0?

Andy Mc's .NET Framework FAQ
Generics, anonymous methods, partial classes, iterators, property visibility (separate visibility for get and set) and static classes. See http://msdn.microsoft.com/msdnmag/issues/04/05/C20/default.aspx for more information about these features.
Related Questions

What's the problem with .NET generics?

Andy Mc's .NET Framework FAQ
NET generics work great for container classes. But what about other uses? Well, it turns out that .NET generics have a major limitation - they require the type parameter to be constrained. For example, you cannot do this: static class Disposer<T> { public static void Dispose(T obj) { obj.Dispose(); } } The C# compiler will refuse to compile this code, as the type T has not been constrained, and therefore only supports the methods of System.Object. Dispose is not a method on System.
Related Questions

A) What is Net Metering?

PV FAQ - PhotoVoltaic Frequently Questioned Answers
If you take the AC output of your Inverter and run it to the mains coming from your utility power meter, any excess power you generate will feed back into the utility grid and drive your power meter backwards. This is called Net Metering. Effectively you will be paid the going retail price for your electricity up to the amount of energy you use per billing period. Any excess energy you generate, will be credited at a lower rate, perhaps not at all.
Related Questions

What's is Microsoft .NET? What's in it for me?

ERP Software - Frequently Asked Questions (FAQ)
Microsoft .NET (pronounced "dot net") is a completely new development platform. There is a lot of press and hype about .NET. What will .NET do for you and your company?" Microsoft has incorporated many significant improvements into this completely new platform. NET insulates software developers from the different operating systems so its easier to deploy, install, maintain The .
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact