System.Xml.Serialization.CodeGenerator.EndMethod C# (CSharp) 메소드

EndMethod() 개인적인 메소드

private EndMethod ( ) : MethodBuilder
리턴 MethodBuilder
        internal MethodBuilder EndMethod()
        {
            MarkLabel(_methodEndLabel);
            Ret();

            MethodBuilder retVal = null;
            retVal = _methodBuilder;
            _methodBuilder = null;
            _ilGen = null;
            _freeLocals = null;
            _blockStack = null;
            _whileStack = null;
            _argList = null;
            _currentScope = null;
            retLocal = null;
            return retVal;
        }