ALFA.Database.ACR_SetPersistentInt C# (CSharp) Метод

ACR_SetPersistentInt() публичный Метод

Set an integer value in the persistent store.
public ACR_SetPersistentInt ( UInt32 Object, string VarName, int Value ) : void
Object System.UInt32 Supplies the object whose persistent store is /// to be accessed.
VarName string Supplies the variable keyword to set.
Value int Supplies the variable data.
Результат void
        public void ACR_SetPersistentInt(UInt32 Object, string VarName, int Value)
        {
            ACR_SetPersistentString(Object, VarName, Convert.ToString(Value));
        }