Bamboo.Prevalence.VersionMigration.Script.GetTypeDeclaration C# (CSharp) Method

GetTypeDeclaration() private method

private GetTypeDeclaration ( string className ) : CodeTypeDeclaration
className string
return System.CodeDom.CodeTypeDeclaration
		CodeTypeDeclaration GetTypeDeclaration(string className)
		{
			CodeTypeDeclaration type = new CodeTypeDeclaration();
			type.Name = className;
			type.Members.Add(GetConstructor());
			type.Members.Add(GetMemberMethod());			
			return type;
		}