Catrobat.Core.Resources.ApplicationResourcesHelper.Get C# (CSharp) Method

Get() public static method

public static Get ( string value ) : string
value string
return string
        public static string Get(string value)
        {
            var map = ResourceManager.Current.MainResourceMap.GetSubtree("Catrobat.Core/ApplicationResources");
            return map.GetValue(value).ValueAsString;
        }
    }
ApplicationResourcesHelper