de en es fr nl pl pt sv zh

documentation

The Behavior of C# Nested Static Classes

Bits, Bobs & Breakpoints — Aaron Holmes

The Behavior of C# Nested Static Classes# 26 July 2018 C#, .NET, Experimental, Documentation While working on a code review, I found a nested static class that I needed to verify the validity of. I had three questions: Does the CLR create new instances when the containing class is instantiated?...

`godoc` struct rendering

Accidentally Quadratic

godoc is Go’s tool for extracting doc comments from source code and rendering HTML documentation (loosely parallel Java’s “javadoc”). godoc processes Go struct definitions in two passes. First, it runs over the AST recursively building rendering documentation and declarations into a textual...

Semantic method naming

Paul Morris

Correctly naming things is the most difficult programming task, along with other documentation tasks. However, this is only because we often afford these tasks insufficient consideration. As with most things, the more we do it the easier it becomes. In this article we will discover how to choose...