|
Our one and only enterprise application suite has been developed over last 3 years using C# 2.0 on .Net 3.0. We use winforms and WCF heavily. The development tools is VS 2005 Pro / TFS 2005 / Resharper 3.1
As technical lead I obviously understand the ...
Started by kanad on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Probably including myself..." Is there much in .NET 4.0 which will benefit you? C# 4 itself doesn't have... .
If we don't upgrade to newer technologies, it will be more difficult to hire good developers, and those who we already have will be fleeing soon.. .
|
|
Let's say I have written a Class Library (dll) in .Net and now I have developers using it in their .Net applications.
However, the library itself could probably be useful also for developers writing natively (in C or C++). So my question is if my managed...
Started by moster67 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You might be able to host Mono, too, it should be equally capable of running pure .Net DLLs....
Thoe other is letting the C or C++ application host the Microsoft CLR and have that run your .Net DLL.
Is certainly one way to implement it.
|
|
I always see people writing "C#" and "C#.NET". What is the correct name of this language? C# or C#.net? I'm sorry for this stupid question but it is really confusing (maybe there's another programming language named C#.net?)...
EDIT: if I'm programming...
Started by Alon on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
The same thing used to happen for C++, where people)
When people say they are using "C#.Net", they mean they are developing on the .Net platform while.
On the NET platform, so people often say C#.NET.
|
Ask your Facebook Friends
|
Is is possible to create COM component and ActiveX controls in .Net (using c# language). I searched internet but i could`t get anything.
Thanks,
santhosh
Started by santhosh kumar on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
If asked, how would you describe the differences between C++ and C#/.Net
Started by Evan on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
C++ creates raw assemblies that run directly on the target platform
Because C# runs in a virtual machine, memory management is handled ... .
It compiles down to a platform agnostic intermediate code.
C# is a managed language that runs in a virtual machine .
|
|
Can someone describe what advantages a C or C++ programmer would have over a .Net programming when developing for Windows?
Started by ajl on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're a .NetYou should learn enough C to....
Reference type performance (this is firmly footed in the .Net world, but learning C/C++ makes C++ and finding that switching and work in complex C environment was pretty easy.
|
|
Suppose I am writing an application in C++ and C#. I want to write the low level parts in C++ and write the high level logic in C#. How can I load a .NET assembly from my C++ program and start calling methods and accessing the properties of my C# classes...
Started by cwick on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
(d) Hosting.
c) IJW and MC++ apps : MC++ & IJW apps can freely call back and forth to each other.
|
|
That is the question. Is there anything you can do with c++ unions that you can't with c# Explicit structs?
Started by devoured elysium on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
C# explicit structs have....
It's actually far more flexible than the union keyword in C++, since you have complete control over the layout in C# with structs .
The LayoutKind attribute is a way to Marshall data into C++ unions in interop .
No, not really.
|
|
I have a method defined in an unmanaged DLL:
int foo(somestruct * vector, int size)
How can I call this method from C#? I've tried with MarshalAs Unmanaged.LPArray with no success. Am I required to use IntPtr and manually serialize into a List or similar...
Started by eckesicle on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
For array, you can use LPArray or even is the actualy C method....
Is the definition of somestruct correct? Is your C int 32 bits, or do you sequentially through custom attribute so it can map to you C struct.
LPArray should be correct.
|
|
This is a subjective question.
I worked in Visual Basic 6.0 before coming into the .NET space.
One thing I see that there are a lot of things, for which there is a need to deal with the Win32 API. As a Visual Basic 6.0 developer, there were a lot of limitations...
Started by shahkalpesh on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
A great example of this is the C# compiler.
You can even see examples of Microsoft starting to eat their own dog food .
People have been expecting C to go away for a very long time, I just don't see and less with C/C++.
Future, if ever.
|