예제 #1
0
 /// <summary>
 /// Get's the namespace of the given type after conversion.
 /// </summary>
 public string GetConvertedNamespace(ClassFile type)
 {
     /*if (type.IsNested)
      * {
      *  return GetConvertedNamespace(type.DeclaringType);
      * }*/
     return(ClassName.JavaClassNameToClrTypeName(type.Package));
 }