Unable to use Parce. Or convert

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!

Parsing a string to an int should work if you use:

int someInt = int.Parse(someString);

As for using Convert, I think that that class is found in System. You would have to include System in your script or do:

int someInt2 = System.Convert.ToInt32(someString);

Dude its Parse not Par’c’e

  void parce() 
{
int someInt = int.Parse(someString);
}