예제 #1
0
        public static bool SystemHunk3Cxr2(out object answer, object arg)
        {
            ISystemHunk3 hunk = arg as ISystemHunk3;

            if (hunk != null)
            {
                answer = hunk.SystemHunk3Cxr2;
            }
            else
            {
                throw new NotImplementedException();
            }
            return(false);
        }
예제 #2
0
        public static bool SystemHunk3SetCxr1(out object answer, object arg, object newValue)
        {
            ISystemHunk3 hunk = arg as ISystemHunk3;

            if (hunk != null)
            {
                answer = hunk.SystemHunk3Cxr1;
                hunk.SystemHunk3Cxr1 = newValue;
                return(false);
            }
            else
            {
                throw new NotImplementedException();
            }
        }