Marshal::SizeOf Method (Type^)
.NET Framework (current version)
Returns the size of an unmanaged type in bytes.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- t
-
Type:
System::Type^
The type whose size is to be returned.
| Exception | Condition |
|---|---|
| ArgumentException | The t parameter is a generic type. |
| ArgumentNullException | The t parameter is null. |
You can use this method when you do not have a structure. The layout must be sequential or explicit.
The size returned is the size of the unmanaged type. The unmanaged and managed sizes of an object can differ. For character types, the size is affected by the CharSet value applied to that class.
The following example demonstrates calling the SizeOf method. This code example is part of a larger example provided for the Marshal class.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: