Advertisement
Guest User

Untitled

a guest
Sep 13th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. private void AddColumn(double? width, bool addGridSplitters, bool addRichTextBoxes, bool expandParentColumns)
  2. {
  3. if (width.HasValue)
  4. {
  5. width = defaultColumnWidth.Value;
  6. }
  7. GridLength columnGridLength = new GridLength(width); //error here because it can't take double? as a parameter
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement