Type Library variable Case Issue.

When importing the 2.6 com libraries into .Net (C#), I have noticed that some variables have a different case than in version 2.5. I’m not sure if this is something .net is goofing up on or whether it’s just a typo , but obviously it will break case sensitive languages. Any thoughts?Reflected code.

//2.6[TypeLibType(4160)][Guid("3C391D99-2886-4E1A-9855-EE30C9FC5B8A")]public interface IAcadDocument : IAcadDatabase{ //... [DispId(67)] AcadDatabase database { get; } // note the case //...}//2.5[TypeLibType(4160)][Guid("3C391D99-2886-4E1A-9855-EE30C9FC5B8A")]public interface IAcadDocument : IAcadDatabase{ //... [DispId(67)] AcadDatabase Database { get; } // note the case //...}

Comments

  • Ok, I can confirm this is a typo in the AcadDocumentClass of V9 Beta

    get_database(); // V9 incorrectget_Database(); //V8.2 correct

    Should I do this as a bug report or can someone pick it up from here

  • Ok, we'l pick it up from here. Thanks for pointing this out.

  • Thanks, This new version is looking really good! Pretty snappy if you ask me

This discussion has been closed.