Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~763 People Reached
Favorite Forums
Member Avatar for treasure2387

I know that C# is translated to MISL which is run by the CLR into machine code. .Net provides different languages such as VB and F# and C++. Are the different high level languages translated into the same MSIL language? Is there a difference between MSIL of C# and MISL …

Member Avatar for treasure2387
0
151
Member Avatar for treasure2387

how come a namespace includes in the header a more specific namespace? ex: using System.Runtime; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security; namespace System { public class Object { // Class code } } Shouldn't be like this: namespace System { namespace Runtime { namespace ConstrainedExecution { public class Object { …

Member Avatar for ddanbe
0
138
Member Avatar for treasure2387

> Main should not be public since it is not suposed to be called by any other methods in your *assemblies*. . > **internal**: Access is limited to the current *assembly*. . What's an assembly?

Member Avatar for gusano79
0
68
Member Avatar for treasure2387

What is the difference between displayClassA and DisplayClassb? When creating classes should i put them outside of the Stuff Class or insisde? What's the difference? using System; using System.Collections.Generic; namespace Empty { public class DisplayClassA { public DisplayClassA(){Console.WriteLine("This Class is outside of STUFF");} } public class Stuff { public class …

Member Avatar for treasure2387
0
107
Member Avatar for treasure2387

Why can't I implement the static function (static void fction(Stuff S)) inside of Main If I cut and paste the function outside of main, the program compiles and works fine. When the program runs I get the output: "Monkey1: chocolate" using System; using System.Collections.Generic; namespace Empty { public class Stuff …

Member Avatar for ddanbe
0
173
Member Avatar for treasure2387

Hi, There is a concept I haven't seen before. I can understand what is happening. But I don't know what this is. It is not a class. It is not a method. What is it? Maybe I know it, but i've been on my PC all day... public DateTime Date …

Member Avatar for ddanbe
0
126