コード例 #1
0
        public T GetValue(Image.ImageTag tag)
        {
            Assert.IsNotNull(tag);

            return((T)property_info.GetValue(tag, null));
        }
コード例 #2
0
        public void SetValue(Image.ImageTag tag, T value)
        {
            Assert.IsNotNull(tag);

            property_info.SetValue(tag, value, null);
        }