|
-
January 31st, 2010, 07:10 AM
#1
How easy is it ?
How easy is it to program in C# ?
I am an idiot that even a known dumb can dare to play games with
Teach me please
-
January 31st, 2010, 09:52 AM
#2
Re: How easy is it ?
This easy |---------------|
In all serious, it will vary on if the person has had previous experience with programming, from a language and syntax perspective, I'd say moderately easy, however I had experience in VB.NET then I decided to learn the native .NET language, can't stand to look at VB now .
Visual C++ Is a little more difficult from a syntax perspective IMO, but you might as well learn unmanaged C++ if you going to do that.
They all get complied into the same IL code and have few differences, so paychecks and personal preferance.
Last edited by AshBrennan; January 31st, 2010 at 09:56 AM.
New to C#  | Using VS 2008 with 3.5.
-
January 31st, 2010, 10:38 AM
#3
Re: How easy is it ?
 Originally Posted by AshBrennan
....
In all serious, it will vary on if the person has had previous experience with programming, from a language and syntax perspective, I'd say moderately easy, however I had experience in VB.NET then I decided to learn the native .NET language, can't stand to look at VB now  .
Visual C++ Is a little more difficult from a syntax perspective IMO, but you might as well learn unmanaged C++ if you going to do that.
They all get complied into the same IL code and have few differences, so paychecks and personal preferance.
I am making questions not for any kind of tests, not even sickening homework I wish to accomplis
I don't like to enjoy "oh what can i do, it is all fait accomplis", I need to only know how easy it is, and I do C#(Cee SHARP not Cee pound) not C++ -managed or unmanaged. Thanks.
-
January 31st, 2010, 10:42 AM
#4
Re: How easy is it ?
I need to only know how easy it is
That's an impossible to answer question unfortunately. There's no way to objectively measure and answer that question.
This easy |---------------|
That's probably the best answer you're going to get off anyone. All anyone can really say is "It's easier than C++". That doesn't mean it's easy though.
www.monotorrent.com For all your .NET bittorrent needs
NOTE: My code snippets are just snippets. They demonstrate an idea which can be adapted by you to solve your problem. They are not 100% complete and fully functional solutions equipped with error handling.
-
January 31st, 2010, 10:52 AM
#5
Re: How easy is it ?
 Originally Posted by Mutant_Fruit
That's an impossible to answer question unfortunately. There's no way to objectively measure and answer that question.
That's probably the best answer you're going to get off anyone. All anyone can really say is "It's easier than C++". That doesn't mean it's easy though.
Thank you for joining You can tell us your own experience about C# to ******** my question. My family is busy counting what harvested during the day. Im gonna see you soon tomorrow in hope if your useful replies
**** I didn't write '*******" wy it turns into * joining one after the oter
<ADMIN: Don't write misspelled versions of filtered words either. That is a violation of this forums acceptable usage policy. - Brad>
Last edited by Brad Jones; February 1st, 2010 at 08:49 AM.
Reason: removed filtered words
-
January 31st, 2010, 12:01 PM
#6
Re: How easy is it ?
 Originally Posted by Boombaby
How easy is it to program in C# ?
PHP Code:
enum CSharpEasiness
{
Easy,
Incomprehensible
}
class Jerk
{
public virtual int IQ { get { return 0; } }
}
class Boombaby : Jerk
{
public override int IQ { get { return -((int)Math.E); } }
}
class CrystalBall
{
public CSharpEasiness TellMeHowDifficultCSharpIs(Jerk jerk)
{
if (jerk is Boombaby)
throw new ArgumentOutOfRangeException(CSharpEasiness.Incomprehensible.ToString());
else
return CSharpEasiness.Easy;
}
}
class FortuneTeller
{
private static CrystalBall crystalBall = new CrystalBall();
static void Main(string[] __)
{
Console.WriteLine(FortuneTeller.crystalBall.TellMeHowDifficultCSharpIs(new Boombaby()).ToString());
}
}
win7 x86, VS 2008 & 2010, C++/CLI, C#, .NET 3.5 & 4.0, VB.NET, VBA... WPF is comming
remeber to give feedback  you think my response deserves recognition? perhaps you may want to click the Rate this post link/button and add to my reputation
private lessons are not an option so please don't ask for help in private, I won't replay
if you use Opera and you'd like to have the tab-button functionality for the texteditor take a look at my Opera Tab-UserScirpt; and if you know how to stop firefox from jumping to the next control when you hit tab let me know
-
January 31st, 2010, 02:53 PM
#7
Re: How easy is it ?
Thank you for ur input, is code taken from Germany near France and Italy or is that done by Mick Rhinosevich from Mars ?
-
January 31st, 2010, 03:19 PM
#8
Re: How easy is it ?
Oh, i'm sorry. Let me answer properly:
It is extremely complex and difficult to create a good application using C#. It is probably one of the hardest things you can do in life.
www.monotorrent.com For all your .NET bittorrent needs
NOTE: My code snippets are just snippets. They demonstrate an idea which can be adapted by you to solve your problem. They are not 100% complete and fully functional solutions equipped with error handling.
-
January 31st, 2010, 04:03 PM
#9
Re: How easy is it ?
Would you please stop feeding the troll.
-
February 1st, 2010, 03:21 AM
#10
Re: How easy is it ?
Code:
public override int IQ { get { return -((int)Math.E); } }
LOL
-
February 1st, 2010, 03:51 AM
#11
Re: How easy is it ?
It is very easy. What isn't so easy is to make programm which does something meanigfull and usefull, users like it and it is maintanable.
- Make it run.
- Make it right.
- Make it fast.
Don't hesitate to rate my post. 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|