System.Runtime.Remoting.TypeInfo.CompareTypes C# (CSharp) Method

CompareTypes() private method

private CompareTypes ( Type type1, String type2 ) : bool
type1 System.Type
type2 String
return bool
        private bool CompareTypes(Type type1, String type2)
        {
            Type type = RemotingServices.InternalGetTypeFromQualifiedTypeName(type2);

            return type1 == type;
        }