Skip to the content.

< Back


IMyInterface

Namespace: MyClassLib

My interface.

public interface IMyInterface

Attributes NullableContextAttribute

Methods

Do(String, Int32)

Do some thing.

void Do(string firstParam, int secondParam)

Parameters

firstParam String
The first param.

secondParam Int32
The second param.

Get(List<String>)

Gets some thing.

string Get(List<string> param)

Parameters

param List<String>
The param.

Returns

String
An empty string.

Greet()

A default interface method — has a body, callers can use it as-is.

virtual string Greet()

Returns

String
A greeting.


< Back