|
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 .
|
|
Hello,
is there a function that, given a C# type's string representation, returns the corresponding .Net type or .Net type's string representation; or any way to achieve this.
For example :
"bool" -> System.Boolean or "System.Boolean"
"int" -> System...
Started by Serious on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There's no difference....
If you know it at compile time, you can use typeof() as normal - the C# aliases really are just aliases, so typeof(int) == typeof(System.Int32) .
Your question isn't entirely clear: I'm not sure what form you've got for the C# alias .
|
|
To invoke a C API from C# I would use P/Invoke. But if I were to do the reverse, call .NET APIs from C, how would I go about it?
Started by Rohit on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you really want to do it all through C APIs necessary! I suspect in most cases....
Make sure you're familiar with their differencesyou can turn c# code into COM, or use C++\CLI .
These are handled very different between C and .Net.
|
|
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.
|