Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Constructor: Nonogram(int?[][], int?[][])

Declaration

public Nonogram(
    int?[][] colClues,
    int?[][] rowClues
)

Summary

Returns a Puzzle object that represents a Nonogram puzzle with the specified column and row clues.

Parameters

int?[][]colClues The column clues. Each integer specifies the length of a consecutive run of set pixels. A null value can be used to include a run of any length.
int?[][]rowClues The row clues. See colClues for details.

Exceptions

  • System.ArgumentNullException
    Thrown if either argument is null.
  • System.ArgumentException
    Thrown if either argument is a zero-length array.