Click here to Skip to main content
15,900,907 members
Home / Discussions / C#
   

C#

 
AnswerRe: How can I write text to a picturebox? Pin
Muammar©12-Jun-07 19:47
Muammar©12-Jun-07 19:47 
QuestionC# Tutorial or samples for beginners Pin
Software_Guy_12312-Jun-07 7:38
Software_Guy_12312-Jun-07 7:38 
AnswerRe: C# Tutorial or samples for beginners Pin
Tarakeshwar Reddy12-Jun-07 7:49
professionalTarakeshwar Reddy12-Jun-07 7:49 
AnswerRe: C# Tutorial or samples for beginners Pin
dino209412-Jun-07 11:37
dino209412-Jun-07 11:37 
AnswerRe: C# Tutorial or samples for beginners Pin
Sathesh Sakthivel12-Jun-07 15:24
Sathesh Sakthivel12-Jun-07 15:24 
AnswerRe: C# Tutorial or samples for beginners Pin
Software_Guy_12313-Jun-07 16:57
Software_Guy_12313-Jun-07 16:57 
QuestionC++ Equivalents Pin
LimeyRedneck12-Jun-07 7:34
professionalLimeyRedneck12-Jun-07 7:34 
AnswerRe: C++ Equivalents Pin
Dave Doknjas12-Jun-07 13:48
Dave Doknjas12-Jun-07 13:48 
"- TYPEDEF's (So far I've punted and done a global Search and Replace)"
- I think this is the only practical way to handle typedef. You can replace certain simple cases with the C# alias syntax "using Foo = x.y.z".

"- Macros (Utility functions)"
- We handle it with search/replace combined with replacement with the simple C# flag type #define (the flag #define allows the converted #ifdef FOO directives to continue to be useful). One problem is that macros are type-less, so it's problematic to refactor these to static methods.

"- const (removed and ignored)"
- Yes, they must be removed, but they provide information for a C++ to C# conversions (especially for parameters).

C++ to C# (or to any other language) is indeed no picnic (we've recently released 'C++ to C# Converter', which eases the task somewhat, but there's just too much complexity in the C++ language to allow a high conversion rate).


David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
C++ to C# Converter: converts C++ to C#
C++ to VB Converter: converts C++ to VB
Instant C++: converts C# to C++/CLI and VB to C++/CLI
Instant Python: converts C# to IronPython and VB to IronPython

GeneralRe: C++ Equivalents Pin
LimeyRedneck12-Jun-07 15:39
professionalLimeyRedneck12-Jun-07 15:39 
QuestionPassing Structure Array to VB.NET from C# Class Pin
jadaar12-Jun-07 7:01
jadaar12-Jun-07 7:01 
AnswerRe: Passing Structure Array to VB.NET from C# Class Pin
MidwestLimey12-Jun-07 9:50
professionalMidwestLimey12-Jun-07 9:50 
QuestionWindow doesn't stay hidden Pin
theFrenchHornet12-Jun-07 6:28
theFrenchHornet12-Jun-07 6:28 
AnswerRe: Window doesn't stay hidden Pin
Luc Pattyn12-Jun-07 6:48
sitebuilderLuc Pattyn12-Jun-07 6:48 
GeneralRe: Window doesn't stay hidden Pin
theFrenchHornet12-Jun-07 8:05
theFrenchHornet12-Jun-07 8:05 
GeneralRe: Window doesn't stay hidden Pin
Luc Pattyn12-Jun-07 8:33
sitebuilderLuc Pattyn12-Jun-07 8:33 
GeneralRe: Window doesn't stay hidden Pin
theFrenchHornet14-Jun-07 3:43
theFrenchHornet14-Jun-07 3:43 
AnswerRe: Window doesn't stay hidden Pin
Shy Agam12-Jun-07 9:11
Shy Agam12-Jun-07 9:11 
AnswerRe: Window doesn't stay hidden Pin
Guffa12-Jun-07 9:13
Guffa12-Jun-07 9:13 
GeneralRe: Window doesn't stay hidden Pin
theFrenchHornet14-Jun-07 3:25
theFrenchHornet14-Jun-07 3:25 
GeneralRe: Window doesn't stay hidden Pin
theFrenchHornet1-Jul-07 7:29
theFrenchHornet1-Jul-07 7:29 
QuestionCaching data Pin
AndrusM12-Jun-07 5:51
AndrusM12-Jun-07 5:51 
AnswerRe: Caching data Pin
Colin Angus Mackay12-Jun-07 5:59
Colin Angus Mackay12-Jun-07 5:59 
GeneralRe: Caching data Pin
AndrusM12-Jun-07 6:41
AndrusM12-Jun-07 6:41 
QuestionHow to change the (DevExpress .NET v7.1) checkedit's ForeColor? Pin
sichensoft12-Jun-07 5:13
sichensoft12-Jun-07 5:13 
AnswerRe: How to change the (DevExpress .NET v7.1) checkedit's ForeColor? Pin
Colin Angus Mackay12-Jun-07 5:17
Colin Angus Mackay12-Jun-07 5:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.