NVelocity.Runtime.RuntimeSingleton.GetProperty C# (CSharp) Method

GetProperty() public static method

Allows an external caller to get a property. The calling routine is required to know the type, as this routine will return an Object, as that is what properties can be.
public static GetProperty ( String key ) : Object
key String property to return
return Object
        public static Object GetProperty(String key)
        {
            return ri.GetProperty(key);
        }