I am unable to use Parce. Or convert. And i have no clue why? It’s not even showing up in MonoDevelop.
Here’s a simple script:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class parceStringToInt : MonoBehaviour {
string someString = "5";
void parce() {
int someInt = someString.Parce/*Parce isn't even showing up in MonoDevelop. As if it doesn't exist*/;
int someInt2 = someString.Convert/*Same thing here*/;
}
}
I have no clue why this isn’t working!