Search Results

5
votes
14answers
747 views

Which platform should I use : native C++ or C# ?

I want to develop a windows application. If I use native C++ and MFC for user interface then the application will be very fast and tiny. But using MFC is very complicated. Also If I use C# then the …
0
votes
2answers
71 views

Using p/invoke to call a function from a C api

I have a C api and I am using p/invoke to call a function from the api in my C# application. The function signature is: int APIENTRY GetData (CASHTYPEPOINTER cashData); …
0
votes
1answer
45 views

How can I share a resource file between projects in Visual Studio?

Hi, I am using C# and how can I code to share a resource file between my projects in the same solution? Thank you. …
17
votes

Where do you get the best in-depth information for C# programming?

I recommend you Jeffrey Richter's "CLR via C#" book. You can learn CLR features and how does c# implement them. Also …
0
votes

C# List<> Order with 3 properties .Net 2.0

var result = from p in persons orderby p.Name, p.Age, p.Level select p; …