AGS.Editor.NativeProxy.GetNativeConstant C# (CSharp) Метод

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

Allows the Editor to reuse constants from the native code. If a constant required by the Editor is not also required by the Engine, then it should instead by moved into AGS.Types (AGS.Native references the AGS.Types assembly). Note that this method returns only System::Int32 and System::String objects -- it is up to the user to determine if the value should be used as a smaller integral type (additional casting may be required to cast to a non-int integral type).
public GetNativeConstant ( string name ) : object
name string
Результат object
        public object GetNativeConstant(string name)
        {
            return _native.GetNativeConstant(name);
        }