Skip to the content.

< Back


MyAbstractClass

Namespace: MyClassLib

My abstract class.

public abstract class MyAbstractClass

Inheritance ObjectMyAbstractClass

Properties

MyProperty

My abstract property.

public abstract int MyProperty { get; set; }

Property Value

Int32
The property value.

Methods

Do()

Do something.

public abstract void Do()

Get(List<String>)

Gets something.

protected string Get(List<string> param)

Parameters

param List<String>
The param.

Returns

String
A string.


< Back