This document provides an introduction to the actor model and Akka.NET framework. It defines key concepts of the actor model such as actors communicating asynchronously via message passing and containing private state. Akka.NET is a toolkit that allows building highly concurrent, distributed, and fault tolerant applications using the actor model. All entities in Akka.NET are actors that process one message at a time in isolation through immutable message passing.