This documentation is archived and is not being maintained.
B
Visual Studio 2005
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
bounds
The size and location of an object.
boxing
The conversion of a value type instance to an object, which implies that the instance will carry full type information at run time and will be allocated on the heap. The Microsoft intermediate language (MSIL) instruction set's box instruction converts a value type to an object by making a copy of the value type and embedding it in a newly allocated object. See also: Microsoft intermediate language, unboxing, value type.
Show: