AssemblyExtension
Extends the Assembly class with additional methods.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Class
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static class AssemblyExtension
Remarks
AssemblyExtensionAssemblyAssemblyExtensionAssembly.GetLoadedAssemblyPathAdditional Resources: Assembly
Examples
using UnityEditor;using UnityEngine;public static class AssemblyInfoExtractor{ [MenuItem("Test/Log Assembly Path")] static void LogAssemblyPath() { Debug.Log(typeof(AssemblyInfoExtractor).Assembly.GetLoadedAssemblyPath()); }}
Static Methods
Method | Description |
|---|---|
| GetLoadedAssemblyPath | Returns location of the assembly. |