This page is a work in progress.You can help improve it. →

Terminology

TermDefinition
DeserializationTurn a string of characters into more structured data.
SerializationTurn structured data into a string of characters.
Asynchronous (Async)Do not wait for this function call to be done, gives the ability to move onto another task in our program.
AwaitWhen added in front of our function call, this will turn our asynchronous function synchronous.
StreamA variable that knows how to read data one chunk at a time (often one character at a time).
Try/CatchA block of code that allows us to anticipate for exceptions and if found we have the code there to handle them.
CRUDCreate, Read, Update, and Delete
© 2017 - 2022; Built with ♥ in St. Petersburg, Florida.