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

AddProperty() public static method

Add a property to the configuration. If it already exists then the value stated here will be added to the configuration entry. For example, if resource.loader = file is already present in the configuration and you addProperty("resource.loader", "classpath") Then you will end up with an ArrayList like the following: ["file", "classpath"]
public static AddProperty ( String key, Object value ) : void
key String key
value Object value
return void
        public static void AddProperty(String key, Object value)
        {
            ri.AddProperty(key, value);
        }