예제 #1
0
파일: PropGen.cs 프로젝트: drminor/propbag
        public void CleanUp(bool doTypedCleanup)
        {
            // Note: We have no managed (or unmanaged) resources to cleanup,
            //all we have to do is call the TypeProp's Cleanup method.
            IProp typedProp = TypedProp;

            if (typedProp != null)
            {
                if (doTypedCleanup)
                {
                    typedProp.CleanUpTyped();
                }
            }
        }