Using variable-length argument lists. : params « Class Interface « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Class Interface » paramsScreenshots 
Using variable-length argument lists.




using System;

public class VarargsTest
{
   public static double Averageparams double[] numbers )
   {
      double total = 0.0// initialize total
      foreach double d in numbers )
         total += d;

      return total / numbers.Length;
   
   public static void Mainstring[] args )
   {
      double d1 = 10.0;
      double d2 = 20.0;
      double d3 = 30.0;
      double d4 = 40.0;

      Console.WriteLine("d1 = {0:F1}\nd2 = {1:F1}\nd3 = {2:F1}\nd4 = {3:F1}\n",d1, d2, d3, d4 );

      Console.WriteLine"Average of d1 and d2 is {0:F1}",Averaged1, d2 ) );
      Console.WriteLine"Average of d1, d2 and d3 is {0:F1}",Averaged1, d2, d3 ) );
      Console.WriteLine"Average of d1, d2, d3 and d4 is {0:F1}",Averaged1, d2, d3, d4 ) );
   }
}


       
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.