AjScript.Tests.TypeUtilitiesTests.GetTypeByName C# (CSharp) Метод

GetTypeByName() приватный Метод

private GetTypeByName ( ) : void
Результат void
        public void GetTypeByName()
        {
            Type type = TypeUtilities.GetType("System.Int32");

            Assert.IsNotNull(type);
            Assert.AreEqual(type, typeof(int));
        }