BaconographyPortable.ViewModel.CommentsViewModel.Cleanup C# (CSharp) Method

Cleanup() public method

public Cleanup ( ) : void
return void
        public override void Cleanup()
        {
            base.Cleanup();
            if (Comments != null)
            {
                Comments.Clear();
                Comments.Dispose();
            }
            Comments = null;
            _linkThing = null;
        }