|
|
|
||||||
|
Feature Request for DotNet 2.0
hi guys,
once you start with c# code generation for DotNet 2.0, a meta tag for partial class declaration would be really nice. maybe something like this: ["clr : partial"] by supporting this feature it will be very easy to extend generated classes. this could be really helpfull to define convertion operators. for a datetime class defined in ice (see the other thread) with the help of: Code:
namespace Global
{
partial class DateTime
{
public static implicit operator System.DateTime(Global.DateTime date)
{
return new System.DateTime(date.nYear, date.nMonth, date.nDay, date.nHour, date.nMinute, date.nSecond, date.nMilliSecond);
}
public static implicit operator Global.DateTime(System.DateTime date)
{
return new DateTime(date.Year, (byte)date.Month, (byte)date.Day, (byte)date.Hour, (byte)date.Minute, (byte)date.Second, (byte)date.Millisecond);
}
}
}
take care & thx alot tom references: Partial Class Definitions (C# Programming Guide)
__________________
Thomas Müller, Freelance Software Developer My profil on www.freelancermap.de Projects depend on customers Last edited by DeepDiver : 11-21-2005 at 06:55 PM. |
|
|||||
|
Something similar to CORBA InterfaceRepository
It seems that current Ice specs & implementation have not anything analogous to CORBA Interface Repository (aka IFR) component functioning as a standalone "service".
As a result, Dynamic Invocation & Dispatch capabilities (as they are called in Ice manual) looks much more pure than CORBA DII & DSI features, which may be based on run-time IDL types introspection (similar to Java reflection API) provided by run-time access to "pre-parsed" IDL descriptions loaded to IFR. As far as I understood (by now), the problem may be partially resolved by using ICE Python/PHP implementation, but what about C/Java etc.? Regards, Vladimir |
|
|||||
|
Why not a portable Slice2Java?
Hi, I´m wondering if a portable Slice2Java exist. I´m having problems with the C++ building files on Visual Studio 6.0 SP5 and .NET 2003, so, why not the two choices a portable Slice2Java.jar and the rest?
Thanks in advanced
__________________
Prof. MSc. Eduardo Escofet http://escofet.netfirms.com University of Holguin, Cuba http://www.uho.edu.cu |
|
||||||
|
Quote:
Regards, Dwayne |
|
|||||
|
SSL python support
Hi,
I find Ice easy to learn, poweful, fast and, above all, useful. I used Ice to write pyjdbc (a python DB driver that uses java JDBC drivers see http://pyjdbc.sf.net ). In my opinion, it would be nice to have SSL support in IcePy. Thanks for your well designed code, Marco |
|
||||||
|
Quote:
Or are you asking for the ability to access the IceSSL::Plugin interface from IcePy? - Mark |
|
|||||
|
Quote:
![]() |
|
||||||
|
Quote:
|
|
|||||
|
I would like to see, that slice2something (for example slice2cs) generate also documentation comments from slice documentation comments for classes which I have to implement.
__________________
Michal Kovac student, Charles University, Prague (Logic on Faculty of Philosophy & Arts and Computer Science on Faculty of Mathematics and Physics) project Ferda |
|
||||||
|
Quote:
|
|
|||||
|
I use slice2docbook, but generating also documentation comments in generated code (C#, Java,...) can be good at least for two reasons:
__________________
Michal Kovac student, Charles University, Prague (Logic on Faculty of Philosophy & Arts and Computer Science on Faculty of Mathematics and Physics) project Ferda |
|
|||||
|
Quote:
__________________
Joannes Vermorel, CS PhD Student, Ecole normale superieure http://www.vermorel.com |
|
||||||
|
Quote:
As far as UML is concerned I personally do not see much in providing this feature, for the best documentation (the UML is documentation) possible is source code.
__________________
Dmitry N. Medvedev Kaspersky Lab http://www.kaspersky.com/ Kaspersky KnowledgeBase |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Ice.Application feature requests | bartley | Comments | 4 | 02-05-2006 02:56 AM |
| Small C# Feature Request | acbell | Comments | 1 | 04-21-2005 02:12 AM |
| Feature request: Mutex classes | stephan | Comments | 1 | 03-27-2005 04:25 PM |
| platform feature matrix | dlyall | Comments | 0 | 09-02-2004 04:52 PM |
| Why not add DBC feature to Slice? | microweb | Comments | 3 | 12-07-2003 08:29 AM |