Catel.Fody.Weaving.Argument.ArgumentInstructionSequenceBuilder.BuildRegexRelatedInstructions C# (CSharp) 메소드

BuildRegexRelatedInstructions() 공개 정적인 메소드

public static BuildRegexRelatedInstructions ( FieldDefinition field, CustomAttribute attribute ) : IEnumerable
field Mono.Cecil.FieldDefinition
attribute Mono.Cecil.CustomAttribute
리턴 IEnumerable
        public static IEnumerable<Instruction> BuildRegexRelatedInstructions(FieldDefinition field, CustomAttribute attribute)
        {
            return BuildRegexRelatedInstructionsInternal(field, attribute);
        }

Same methods

ArgumentInstructionSequenceBuilder::BuildRegexRelatedInstructions ( Mono.Cecil.ParameterDefinition parameter, CustomAttribute attribute ) : IEnumerable

Usage Example

예제 #1
0
 protected override sealed void BuildInstructions(ModuleDefinition module, TypeDefinition type, MethodDefinition method, FieldDefinition field, CustomAttribute attribute, List <Instruction> instructions)
 {
     instructions.AddRange(ArgumentInstructionSequenceBuilder.BuildRegexRelatedInstructions(field, attribute));
 }