Skip to content

Utility-530/Utility.Interfaces

Repository files navigation

Utility Interfaces

.NET 2 NuGet version (Newtonsoft.Json.Bson)

A collection of interface types (generally) with a single readonly property e.g

public interface ICount
{
    int Count { get; }
}

or method

public interface ICopy
{
    string Copy();
}

and names, which match their properties

some types are composed of get and set sub-types

e.g

public interface IData : IGetData, ISetData
{
}

public interface IGetData
{
    object Data { get; }
}

public interface ISetData
{
    object Data { set; }
}

About

a foundational collection of interface types divided by their generic/ non-generic nature or relation to the concept of property-changes or trees

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages