hello experts,
Can u tel me what is .net framework in 2 lines? and also definition for

INTROPERABILITY, ABSTRACT, METADATA, MANIFEST ?

Recommended Answers

All 6 Replies

Hello Riyas,
FYI .NET Framework cannot be defined in two lines but stiil if you insist then here it is:

the .NET Framework helps you to build applications that work the way you want, in the programming language you prefer, across software, services, and devices.

Interoperability
Interoperability is a property referring to and the ability of diverse systems and organizations to work together (inter-operate).
-wikipedia

Metadata
Metadata is binary information describing your program that is stored either in a common language runtime portable executable (PE) file or in memory. When you compile your code into a PE file, metadata is inserted into one portion of the file, while your code is converted to Microsoft intermediate language (MSIL) and inserted into another portion of the file. Every type and member defined and referenced in a module or assembly is described within metadata. When code is executed, the runtime loads metadata into memory and references it to discover information about your code's classes, members, inheritance, and so on.

.NET Framework: An integral Windows component that supports building, deploying, and running the next generation of applications and Web services.

Metadata: Information that describes every element managed by the common language runtime: an assembly, loadable file, type, method, and so on.

Manifest: An integral part of every assembly that renders the assembly self-describing. The assembly manifest contains the assembly's metadata.

Interoperability : Tools and techniques to interoperate between .NET managed code and unmanaged code include Platform Invoke services and .NET Framework and COM interoperability tools.

Abstract: Abstract classes act as expressions of general concepts from which more specific classes can be derived. You cannot create an object of an abstract class type; however, you can use pointers and references to abstract class types.

commented: nice explanations. +2

.Net framework in short form is:
Multiple languages on one platform...

commented: nice answer !!! +2

Thank You very much every one replied me. I got many ideas..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.