BuildingCoder.CmdSpaceAdjacency.PrintSpaceInfo C# (CSharp) Method

PrintSpaceInfo() private method

private PrintSpaceInfo ( string indent, Space space ) : void
indent string
space Space
return void
        private void PrintSpaceInfo(
            string indent,
            Space space)
        {
            Debug.Print( "{0}{1} {2}", indent,
            space.Name, space.Number );
        }