reflection-method-find

Locate C# methods by name, class, and parameter signatures via reflection.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/Silac1995/My-World-Isekai-Unity --skill reflection-method-find-silac1995
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: reflection-method-find
Source: https://github.com/Silac1995/My-World-Isekai-Unity/tree/main/.claude/skills/reflection-method-find
Command: npx skills add https://github.com/Silac1995/My-World-Isekai-Unity --skill reflection-method-find-silac1995

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Locates methods across a C# codebase using reflection, including private methods, by method name, class, and parameters.

Core Features & Use Cases

  • Find methods by name, class, and parameter signatures across assemblies.
  • Access private methods via reflection for debugging and code understanding.
  • Use the results to invoke or inspect methods with a separate tool (reflection-method-call).

Quick Start

Run the tool with a filter for namespace (optional), typeName, methodName, and parameters to locate the target method.

Frequently Asked Questions about reflection-method-find

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find a private C# method using reflection across an entire codebase?

To find private C# methods across assemblies, provide a filter containing the namespace, typeName, methodName, and parameters; the tool returns a structured description of the matching private method.

Can I use C# reflection to search for methods in a Unity project?

Yes, you can use this reflection method search in Unity codebases as well as non-Unity projects, locating methods by class name, method name, and parameter signatures across assemblies.

How do I locate a C# method by its parameter signature using reflection?

To locate a C# method by parameter signature, include the parameter types in the search filter alongside the methodName and typeName to match the exact method definition across assemblies.

What is the best way to search for methods across multiple C# assemblies?

Searching across multiple C# assemblies is done by applying a reflection filter that specifies the typeName, methodName, and parameters, returning a structured description of the matching method wherever it is located.

How do I invoke a private C# method after finding it with reflection?

After finding a private C# method with reflection, you use a separate tool to invoke or inspect the method using the structured description returned by the reflection method search.