Thread: basic questions on C#

  1. #1
    flashing vampire black's Avatar
    Join Date
    May 2002
    Posts
    563

    basic questions on C#

    hi guys i had some simply questions on C#

    1. is that true C# has the ability to handle with garbage memory itselff ?

    2. what about the pointer in C# ? can we ignore it now ?

    3. is C# flatform independent ? what about if we want to develop C# projects on other platforms such as *nux ?

    thanx for any reply~
    Never end on learning~

  2. #2
    Registered User
    Join Date
    Dec 2001
    Posts
    88
    1) Yes.

    2) There are pointers.
    But they can only be used in so called 'unsafe' blocks.

    Like this:
    Code:
    unsafe
    {
      int* p;
      //do whatever you like
    }
    3) The mono Project is porting dotNET to Unix -> http://www.go-mono.com/
    Hope you don't mind my bad english, I'm Austrian!

  3. #3
    flashing vampire black's Avatar
    Join Date
    May 2002
    Posts
    563
    thanx i'd glad to get pointers are not that important in C#, aha, most of time it refused me much

    and, mono project seems no power support ? .Net is very huge and it must be hard to make a transfer i think ...
    Never end on learning~

  4. #4
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    Not to mention that MS wrote it to suit the Windows platform...
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Basic Questions
    By Panda_ in forum C Programming
    Replies: 15
    Last Post: 09-23-2009, 04:24 PM
  2. questions....so many questions about random numbers....
    By face_master in forum C++ Programming
    Replies: 2
    Last Post: 07-30-2009, 08:47 AM
  3. Some Basic questions
    By BlaX in forum C Programming
    Replies: 7
    Last Post: 06-30-2009, 09:51 AM
  4. Please help, basic unsigned conversion questions
    By ninjacookies in forum C Programming
    Replies: 3
    Last Post: 04-20-2005, 10:50 AM
  5. questions questions questions.....
    By mfc2themax in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 08-14-2001, 07:22 AM