Skip to content

phlik/Safely

Repository files navigation

Safely

Simple extension methods for null safe accessing of data in c#.

Try it out it could change the way you do think about c# taking your code from

foo item;
if(obj != null){
    item = obj.prop;
}

to

var item = obj.Let(c => c.prop);

About

Simple extensionmethods for null safe accessing of data in c#

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages