CopyPastor

Detecting plagiarism made easy.

Score: 0.8893948182982989; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2017-01-15
by Liquid Core

Original Post

Original - Posted on 2010-08-18
by Sandor Drieƫnhuizen



            
Present in both answers; Present only in the new answer; Present only in the old answer;

You'll have to add the assembly name like this:
Type.GetType("MyProject.Domain.Model." + myClassName + ", AssemblyName");
To avoid ambiguity or if the assembly is located in the GAC, you should provide a fully qualified assembly name like such:
Type.GetType("System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");


You'll have to add the assembly name like this: Type.GetType("MyProject.Domain.Model." + myClassName + ", AssemblyName");
To avoid ambiguity or if the assembly is located in the GAC, you should provide a fully qualified assembly name like such:
Type.GetType("System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");

        
Present in both answers; Present only in the new answer; Present only in the old answer;