Skip to content
This repository was archived by the owner on Dec 13, 2025. It is now read-only.

VRage.Game.ModAPI.Ingame.Utilities.MyIni.Set

Malware edited this page Dec 24, 2018 · 16 revisions

IndexMyIni

void Set(string section, string name, string value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, string value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, bool value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, bool value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, byte value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, byte value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, sbyte value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, sbyte value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, ushort value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, ushort value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, short value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, short value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, uint value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, uint value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, int value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, int value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, ulong value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, ulong value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, long value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, long value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, float value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, float value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, double value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, double value)

Summary

Sets the value of the given configuration key.

void Set(string section, string name, decimal value)

Summary

Sets the value of the given configuration key.

void Set(MyIniKey key, decimal value)

Summary

Sets the value of the given configuration key.

Clone this wiki locally