예제 #1
0
파일: Context.cs 프로젝트: adiel/NSpec
        public void Acts()
        {
            if (Parent != null)
            {
                Parent.Acts();
            }

            if (Act != null)
            {
                Act();
            }
        }