Click or drag to resize
Llvm.NET LogoDebugMemberInfo Class

[This is preliminary documentation and is subject to change.]

Describes a member/field of a type for creating debug information
Inheritance Hierarchy
SystemObject
  Llvm.NET.DebugInfoDebugMemberInfo

Namespace:  Llvm.NET.DebugInfo
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public class DebugMemberInfo

The DebugMemberInfo type exposes the following members.

Constructors
  NameDescription
Public methodDebugMemberInfo
Initializes a new instance of the DebugMemberInfo class
Top
Properties
  NameDescription
Public propertyDebugInfoFlags
flags for the field declaration
Public propertyDebugType
Debug type information for this field
Public propertyExplicitLayout
Provides explicit layout information for this member
Public propertyFile
File the field is declared in
Public propertyIndex
LLVM structure element index this descriptor describes
Public propertyLine
Line the field is declared on
Public propertyName
Name of the field
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

This class is used with SetBody(Boolean, NativeModule, DIScope, DIFile, UInt32, DebugInfoFlags, IEnumerableDebugMemberInfo) to provide debug information for a type.

In order to support explicit layout structures the members relating to layout are all NullableT. When they are null then modules Layout target specific layout information is used to determine layout details. Setting the layout members of this class to non-null will override that behavior to define explicit layout details.

See Also