The use of an abstract property : Properties « Class Interface « C# / C Sharp






The use of an abstract property

The use of an abstract property
/*
C# Programming Tips & Techniques
by Charles Wright, Kris Jamsa

Publisher: Osborne/McGraw-Hill (December 28, 2001)
ISBN: 0072193794
*/

//
// Abstract.cs -- Demonsrates the use of an abstract property.
//
//                Compile this program with the following command line:
//                    C:>csc Abstract.cs
//
namespace nsAbstract
{
    using System;
    using System.Runtime.InteropServices;
    public class AbstractPro
    {
        static public void Main ()
        {
            Console.WriteLine (clsAbstract.StaticMethod());
        }
    }
    //
    // To use the abstract modifier on a method, the class also must
    // be declared as abastract
    abstract class clsAbstract
    {
    //
    // To declare an abstract method, end the declaration with a semicolon.
    // Do not provide a body for the method.
        abstract public int AbstractMethod();
    //
    // An abstract class may contain a static method. You do not have
    // to declare an instance of the class to access a static method
        static public double StaticMethod()
        {
            return (3.14159 * 3.14159);
        }
        abstract public long Prop
        {
            get;
            set;
        }
    }
    //
    // Inherit from the abstract class. The following class implements
    // the AbstractMethod().
    // The access level of the derived class method must be the same
    // as the access level of the base class abstract method.
    class clsDerivedFromAbstract : clsAbstract
    {
        override public int AbstractMethod()
        {
            return (0);
        }
        override public long Prop
        {
            get
            {
                return (val);
            }
            set
            {
                val = value;
            }
        }
        private long val;
    }
}


           
       








Related examples in the same category

1.Override Properties
2.enum based attribute
3.A simple property exampleA simple property example
4.Add Length property to FailSoftArrayAdd Length property to FailSoftArray
5.Convert errflag into a propertyConvert errflag into a property
6.Error handling in property setter validating
7.Use properties to set and get private membersUse properties to set and get private members
8.Define properties for classDefine properties for class
9.Demonstrates the use of properties to control how values are saved in fieldsDemonstrates the use of properties to control how values are saved in fields
10.Illustrates the use of a propertyIllustrates the use of a property
11.access to a private field through a property
12.Properties: Use of Properties
13.Properties: Side Effects When Setting Values
14.Properties Accessors
15.Delegates as Static Properties
16.Properties:Static Properties
17.Properties:Virtual PropertiesProperties:Virtual Properties