Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

VRage.Game.ModAPI.Ingame.Utilities.MyIniParseResult

Morten Aune Lyrstad edited this page Apr 16, 2022 · 39 revisions

IndexNamespace Index

MyIniParseResult Struct

public struct MyIniParseResult

Represents the results of a configuration parsing.

Namespace: VRage.Game.ModAPI.Ingame.Utilities
Assembly: VRage.Game.dll

Fields

string Error

Gets a description of the error that occurred during parsing. Will benullif no error occurred.

Properties

bool IsDefined { get; }

Determines if the value of this result is defined, meaning whether the Success actually holds any meaning.

int LineNo { get; }

Gets the line number where an error occured.

bool Success { get; }

Determines the success of the configuration parsing.

Methods

bool Equals(MyIniParseResult other)

Compares this MyIniParseResult with another.

bool Equals(object obj)

Compares this MyIniParseResult with another.

int GetHashCode()

Gets the hash code for this MyIniParseResult .

string ToString()

Generates a generic error message in the form ofLine N: Error

Clone this wiki locally