Alexandria.Plugins.General.LuaInstruction.GetArgumentRegisterRange C# (CSharp) Метод

GetArgumentRegisterRange() приватный Метод

private GetArgumentRegisterRange ( int from, int to ) : string
from int
to int
Результат string
        string GetArgumentRegisterRange(int from, int to)
        {
            if (from != to)
                return "R[" + from + " .. " + to + "]";
            return GetArgumentRegister(from);
        }