ERROR CS0104

patrick

Well-known member
Joined
Dec 5, 2021
Messages
269
Programming Experience
1-3
ERROR CS0104
How can i do this error in C# ??
There is the Example source??
 
Here is how you can do (cause) a CS0104:


To solve it, easiest is to just type the full name (including the namespace) of the class you want to use

C#:
using System.Numerics;
using UnityEngine;

...


Vector3 x; //cs0104

System.Numerics.Vector3 x; //ok
UnityEngine.Vector3 y; //ok
 
Back
Top Bottom