private void TestAnimationStringProperty()
        {
            string value = String.Empty;

            Assert.IsTrue(animationInstance.SetString(stringProperty, "Test string message from managed code"));

            if (animationInstance.GetString(stringProperty, ref value))
            {
                Debug.AddOnScreenMessage(-1, 30.0f, Color.LimeGreen, value.GetType() + " animation property value retrieved: " + value);
            }
            else
            {
                Debug.AddOnScreenMessage(-1, 30.0f, Color.Red, value.GetType() + " animation property value retrievement failed!");
            }
        }