How to use System.Math in C#?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Atran
    Contributor
    • May 2007
    • 319

    How to use System.Math in C#?

    Hello everybody, can anyone till me:
    What we can do in System.Componen tModel

    If you can give me easy example too.
    Thanks for anyhelp.
  • Atran
    Contributor
    • May 2007
    • 319

    #2
    What I can do in System.Collecti ons

    Hello, What I can do in System.Collecti ons and System.Collecti ons.Generic.
    If you can give me an easy example.
    Thanks for anyhelp.

    Comment

    • Atran
      Contributor
      • May 2007
      • 319

      #3
      What I can do in System.Runtime

      Hello, What I can do in System.Runtime.
      If you can give me an easy example.
      Thanks for anyhelp.

      Comment

      • Atran
        Contributor
        • May 2007
        • 319

        #4
        How to use System.Math in C#?

        Hello, How I can use math in C#?
        Thanks for anyhelp.

        Comment

        • Atran
          Contributor
          • May 2007
          • 319

          #5
          Using System.Media !!!

          Hello, anyone can give me an example about System.Media !!!
          And How I save the sound that I play it on my Form from [rtsp server].
          I can make a new sound player, but I dont know how to play it:

          Code:
          System.Media.SoundPlayer x = new System.Media.SoundPlayer("rtsp://server40.gpg.com/iranian/Googoosh/1-akharinkhabar.rm");
          And this file cant be download, so how I can to stream the sound and save it......
          Great Thanks for your help.

          Comment

          • Atran
            Contributor
            • May 2007
            • 319

            #6
            Data (XML) in C#!!!

            How I can use Data (System.Data) in C#, is that helpful.from using xml.
            Thanks.

            Comment

            • Atran
              Contributor
              • May 2007
              • 319

              #7
              What can do in the System.Text ?

              Hello, What can do in the System.Text ?
              IF you can Give me an easy example.
              Thanks.

              Comment

              • blackjack2150
                New Member
                • Feb 2007
                • 79

                #8
                Originally posted by Atran
                Hello, anyone can give me an example about System.Media !!!
                And How I save the sound that I play it on my Form from [rtsp server].
                I can make a new sound player, but I dont know how to play it:

                Code:
                System.Media.SoundPlayer x = new System.Media.SoundPlayer("rtsp://server40.gpg.com/iranian/Googoosh/1-akharinkhabar.rm");
                And this file cant be download, so how I can to stream the sound and save it......
                Great Thanks for your help.
                The SoundPlayer object is used like this:

                System.Media.So undPlayer sp = new System.Media.So undPlayer("C:\\ Windows\\Media\ \chord.wav");
                sp.Play();


                But it will ONLY PLAY WAV files!
                In your example you were trying to load a Real Player "rm" file. You cam forget about it.

                PS: A simple search on MSDN would have given you the answer in no time.

                Comment

                • Frinavale
                  Recognized Expert Expert
                  • Oct 2006
                  • 9749

                  #9
                  Originally posted by Atran
                  Hello, What can do in the System.Text ?
                  IF you can Give me an easy example.
                  Thanks.
                  Hi Atran!

                  I have merged your last few threads into one thread.
                  It seems to me that, as blackjack2150 has stated, a simple google search would help you out a lot with these questions.

                  There are two sticky threads at the top of the .NET forum... be sure to check out the second sticky thread on Important links and and answers to commonly asked questions.

                  When I was first starting out with .NET I basically lived on the MSDN Library website. It has up-to-date information on each of the class libraries and every object. There are also examples on how to use the objects.

                  Cheers!
                  -Frinny

                  Comment

                  • Motoma
                    Recognized Expert Specialist
                    • Jan 2007
                    • 3236

                    #10
                    The MSDN is the best place to start with questions like this. Is holds documentation for the entire .NET Framework.

                    Comment

                    Working...