Skip to content

Commit 389d446

Browse files
authored
Merge pull request #2394 from syncfusion-content/Fix_publish_issue
Fix publish issue in smart form recognizer UG
2 parents cae834e + 262a47a commit 389d446

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Document-Processing/DataExtraction/SmartFormRecognizer/NET/working-with-recognize-option.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ recognizer.FormRecognizeOptions.ConfidenceThreshold = 0.9;
8686

8787
FormRecognizer recognizer = new FormRecognizer();
8888
// Set a single page range – detects only the specified page
89-
recognizer.FormRecognizeOptions.PageRange = new int[,]{{ 3 }{ 8 }};
89+
recognizer.FormRecognizeOptions.PageRange = new int[,] { { 3 }, { 8 } };
9090

9191
// Set a page range – detects content between the specified start and end page
92-
recognizer.FormRecognizeOptions.PageRange = new int[,]{{ 3, 8 }};
92+
recognizer.FormRecognizeOptions.PageRange = new int[,] { { 3, 8 } };
9393

9494
{% endhighlight %}
9595
{% endtabs %}

0 commit comments

Comments
 (0)