C# (CSharp) Phantom.Core.Builtins Namespace

Classes

Name Description
FileFilter
FilesContainer
FtpDirectory
IOFunctions
IOPermissionFunctions
QuickReferences
WithMacro The 'with' macro can be used to turn this: with Foo(): .bar() .baz() ...into this: var foo = new Foo(); foo.bar(); foo.baz(); ...it also works with alternative syntaxes: with f = Foo(): .bar() .baz() ... this means you can continue to access the 'f' variable after the with block has completed. f = Foo() with f: .bar() .baz() This would be much simpler if I wrote the macro in Boo rather than C#, but I thought this would be fun...
WithMacro.OmittedReferenceVisitor
ZipFunctions