What am I doing wrong?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework.Graphics;
using Box2D.XNA;
//...
Type.Parse("GameObjectModel");
Compilation error:
'System.Type' does not contain a definition for 'Parse'
I am trying to get the type of a class name from a string, so I can instantiate an instance of that class.