コード例 #1
0
        public void Test_GetTagProps()
        {
            TagProperties props = GEDCOMProvider.GetTagProps("ADDR");

            Assert.IsNotNull(props);
            Assert.IsTrue(props.SkipEmpty);

            props = GEDCOMProvider.GetTagProps("test");
            Assert.IsNull(props);
        }
コード例 #2
0
        public bool IsEmptySkip()
        {
            TagProperties props = GEDCOMProvider.GetTagProps(fName);

            return(props != null && props.SkipEmpty);
        }