GlobalImport Class

Definition

Represents a Visual Basic global imports.

public ref class GlobalImport sealed : IEquatable<Microsoft::CodeAnalysis::VisualBasic::GlobalImport ^>
[System.Diagnostics.DebuggerDisplay("{GetDebuggerDisplay(), nq}")]
public sealed class GlobalImport : IEquatable<Microsoft.CodeAnalysis.VisualBasic.GlobalImport>
[<System.Diagnostics.DebuggerDisplay("{GetDebuggerDisplay(), nq}")>]
type GlobalImport = class
    interface IEquatable<GlobalImport>
Public NotInheritable Class GlobalImport
Implements IEquatable(Of GlobalImport)
Inheritance
GlobalImport
Attributes
Implements

Properties

Clause

The import clause (a namespace name, an alias, or an XML namespace alias).

Name

The import name.

Methods

Equals(GlobalImport)

Determines whether the current object is equal to another object of the same type.

Equals(Object)

Determines if the current object is equal to another object.

GetHashCode()

Creates a hashcode for this instance.

Parse(IEnumerable<String>)

Parses a collection of strings representing imports to create collection of GlobalImports.

Parse(IEnumerable<String>, ImmutableArray<Diagnostic>)

Parses a collection of strings representing imports to create a collection of GlobalImport instance and diagnostics

Parse(String)

Parses a specified string to create a GlobalImport instance.

Parse(String, ImmutableArray<Diagnostic>)

Parses a specified string to create a GlobalImport instance with diagnostics info.

Parse(String[])

Parses a parameter array of string arrays representing imports to create a collection of GlobalImports.

Operators

Equality(GlobalImport, GlobalImport)

Operator for Equality with GlobalImport Objects.

Inequality(GlobalImport, GlobalImport)

Overloaded Operator for Inequality ith GlobalImport Objects.

Applies to