Skip to content

UntypedSharped is a compact micro-framework to bring untyped javascript features to the .NET world

License

Notifications You must be signed in to change notification settings

AlexanderBaggett/UntypedscriptSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

UntypedSharp

A strongly untyped framework

UntypedSharped is a compact micro-framework to bring untyped javascript features to the .NET world

It started out as a fun experiment with implicit operators in C#, and evolved into this.

Any

A class representing the Javascript any type. (let the bullshittery commence) or as close as C# will let us emulate it.

Falsy checking

We can simulate falsy checking in Javascript with C# and .Net Any<string> any = "stuff" if(any) is equivalent to if(any!= null || any != "") etc

Adhoc properties

Any<string> any = "adsf"

any["stuff"] = "more stuff";

Operators

any > 10

10 < any

true > any

any + "try this at home kids"

..etc

About

UntypedSharped is a compact micro-framework to bring untyped javascript features to the .NET world

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages