当前位置: 首页>>代码示例>>C#>>正文


C# MetadataToken.ToInt32方法代码示例

本文整理汇总了C#中MetadataToken.ToInt32方法的典型用法代码示例。如果您正苦于以下问题:C# MetadataToken.ToInt32方法的具体用法?C# MetadataToken.ToInt32怎么用?C# MetadataToken.ToInt32使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MetadataToken的用法示例。


在下文中一共展示了MetadataToken.ToInt32方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Write

        public void Write(MethodBody body, /*Telerik Authorship*/ MetadataToken methodToken, /*Telerik Authorship*/ MetadataToken localVarToken)
        {
            /*Telerik Authorship*/
            //var method_token = body.Method.MetadataToken;
            var sym_token = new SymbolToken (methodToken.ToInt32 ());
            //var sym_token = new SymbolToken(body.Method.MetadataToken.ToInt32());

            var instructions = CollectInstructions (body);
            if (instructions.Count == 0)
                return;

            var start_offset = 0;
            var end_offset = body.CodeSize;

            writer.OpenMethod (sym_token);
            writer.OpenScope (start_offset);

            DefineSequencePoints (instructions);

            /*Telerik Authorship*/
            Dictionary<VariableDefinition, string> methodVariableDefinitionToNameMap =
                GetMethodVariableDefinitionToNameMap(body.Method);

            DefineVariables(body, /*Telerik Authorship*/ localVarToken, /*Telerik Authorship*/ methodVariableDefinitionToNameMap, start_offset, end_offset);

            writer.CloseScope (end_offset);
            writer.CloseMethod ();
        }
开发者ID:juancarlosbaezpozos,项目名称:JustDecompileEngine,代码行数:28,代码来源:PdbWriter.cs

示例2: DefineVariables

        void DefineVariables(MethodBody body, /*Telerik Authorship*/ MetadataToken localVarToken,  /*Telerik Authorship*/ Dictionary<VariableDefinition, string> methodVariableDefinitionToNameMap, int start_offset, int end_offset)
        {
            if (!body.HasVariables)
                return;

            /*Telerik Authorship*/
            //var sym_token = new SymbolToken (body.LocalVarToken.ToInt32 ());
            var sym_token = new SymbolToken(localVarToken.ToInt32());

            var variables = body.Variables;
            for (int i = 0; i < variables.Count; i++) {
                var variable = variables [i];

                /*Telerik Authorship*/
                string variableName = GetVariableName(variable, methodVariableDefinitionToNameMap);

                CreateLocalVariable(variable, /*Telerik Authorship*/ variableName, sym_token, start_offset, end_offset);
            }
        }
开发者ID:juancarlosbaezpozos,项目名称:JustDecompileEngine,代码行数:19,代码来源:PdbWriter.cs


注:本文中的MetadataToken.ToInt32方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。