Monday, July 27, 2009

What's New in .NET 3.0 ?


The .NET Framework 3.0 has the following new Technologies in it:

•Windows Communication Foundation

•Windows Presentation Foundation

•Windows Workflow Foundation

•Windows CardSpace




www.codecollege.NET

What is .NET Remoting ?


MS .NET Remoting provides a framework through which objects in different application domains can interact with each other.



www.codecollege.NET

How can you reference current thread of the method ?



You can do that by calling the method,
Thread.CurrentThread();


www.codecollege.NET

What is CodeDom?



CodeDom (Code Document Object Model) is used to create programs which generates code from design.
Uses:
1. Templated code Generation:
Code generation for ASP.NET, XML Webservices proxies,etc
2. Dynamic Compilation:
Supporting code generation in 1 or more languages.



www.codecollege.NET

What is Native Image Generator (Ngen.exe)?



Native Image Generator (Ngen.exe) is a tool which generates machine specific code and loads them in the native cache of local computer.



www.codecollege.NET