Open sandboxFocus

Interface IPointerType

Represents an unsafe pointer type.

Namespace: Metalama.Framework.Code.Types
Assembly: Metalama.Framework.dll
Syntax
public interface IPointerType : IType, ICompilationElement, IDisplayable, IEquatable<IType>
Remarks

To create an instance of IPointerType, use MakePointerType() on an existing type. For example, to create int*, use TypeFactory.GetType(SpecialType.Int32).MakePointerType().

Properties

Name Description
PointedAtType

Gets the type pointed at, that is, T for T*.

Extension Methods

See Also