Actually, it is not a typo. The original authors didn't convert one call
to get_java_package to get_csharp_namespace.
Tested by building Thrift.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665489
13f79535-47bb-0310-9956-
ffa450edef68
t_program* program = ttype->get_program();
if (program != NULL && program != program_) {
- string ns = program->get_java_package();
+ string ns = program->get_csharp_namespace();
if (!ns.empty()) {
return ns + "." + ttype->get_name();
}