E

A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z 

  • encapsulation
    The ability of an object to hide its internal data and methods, making only the intended parts of the object programmatically accessible.
  • enum (enumeration)
    A special form of value type that inherits from System.Enum and supplies alternate names for the values of an underlying primitive type. An enumeration type has a name, an underlying type, and a set of fields. The underlying type must be one of the built-in signed or unsigned integer types (such as Byte, Int32, or UInt64). The fields are static literal fields, each of which represents a constant. The language you are using assigns a specific value of the underlying type to each field.
  • evidence
    The properties of code, such as a digital signature or the zone or site of its origin, that are used by security policy to grant permissions to code. See also: security policy.
  • executable file
    A file in portable executable (PE) file format that can be loaded into memory and executed by the operating system loader. It can be either an .exe or a .dll file. In the .NET context, a PE file must be translated by the common language runtime into native code before it can be executed by the operating system. See also: portable executable (PE) file.
  • Extensible Markup Language (XML)
    A subset of Standard Generalized Markup Language (SGML) that is optimized for delivery over the Web. XML provides a uniform method for describing and exchanging structured data that is independent of applications or vendors.
  • external style
    A style in an external style sheet. See also: external style sheet.
  • external style sheet
    A style sheet defined in a user control in an .ascx file. See also: external style.