Error CS0030 Unable to convert type 'object' to 'System.TypedReference'

I can not compile the following code with the latest version of VS2017 build 15.5.0, I have not had this problem before.

 void MyMethod(object[] objects)
 {
    TypedReference.SetTypedReference((TypedReference)objects[0], objects[1]);
 }

I told Microsoft https://developercommunity.visualstudio.com/content/problem/166353/error-cs0030-cannot-convert-type-object-to-systemt.html

+4
source share

Source: https://habr.com/ru/post/1690543/


All Articles