Search Issue Tracker
Fixed in 2022.1.X
Fixed in 2021.2.X
Votes
0
Found in
Issue ID
1346334
Regression
Yes
[Mono Upgrade] MissingMethodException thrown when attempting to use IsComObject
Usage of IsComObject now throws a MissingMethodException where previously it would not.
To repro attach the following script to an object and enter playmode:
```
using System;
using UnityEngine;
public class DynamicTest : MonoBehaviour
{
public int test = 10;
// Start is called before the first frame update
void Start()
{
#if DISABLE_COM
Debug.Log("COM DISABLED!!!");
#endif
dynamic dyn = test;
Type t = dyn.GetType();
Debug.Log("Type:"+t.FullName);
}
// Update is called once per frame
void Update()
{
}
}
```
Introduced by the mono upgrade
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Rendering Debugger window sections do not have a minimum width set when resizing with the slider in the middle of the window
- Last segment of a Sprite Shape Spline is affected by other segments' Sprite Variant change when no edge Sprite is selected
- [iOS] Application frequently crashes on Social.LoadAchievements call when many achievements are registered
- Errors “RenderPass: Attachment 0 is declared as depth attachment but RGBA8 sRGB is not a valid depth format.“ and “BeginSubPass: Not inside a Renderpass“ are present when using Native RenderPass with a RenderTexture that only has depth output
- ArgumentOutOfRangeException is thrown when an empty DropdownField is clicked at runtime
Resolution Note (fix version 2022.1):
Fixed regression introduced by the mono upgrade where a MissingMethodException was thrown when IsComObject was called.