From: Eunki Hong Date: Thu, 12 Oct 2023 14:51:41 +0000 (+0900) Subject: [NUI] Resolve TextLable build warning X-Git-Tag: accepted/tizen/unified/20231205.024657~84 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=a85ebe23e31644c0b35f467c3cff4b6684bbf0bf;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Resolve TextLable build warning Reference documents : https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/ To refer to XML elements (for example, your function processes specific XML elements that you want to describe in an XML documentation comment), you can use the standard quoting mechanism (< and >). Signed-off-by: Eunki Hong --- diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs b/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs index e935960..1c97921 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs @@ -1425,7 +1425,7 @@ namespace Tizen.NUI.BaseComponents /// /// var textFitArray = new Tizen.NUI.Text.TextFitArray(); /// textFitArray.Enable = true; - /// textFitArray.OptionList = new List() + /// textFitArray.OptionList = new List<Tizen.NUI.Text.TextFitArrayOption>() /// { /// new Tizen.NUI.Text.TextFitArrayOption(12, 18), /// new Tizen.NUI.Text.TextFitArrayOption(24, 40), @@ -1441,14 +1441,14 @@ namespace Tizen.NUI.BaseComponents /// [Binary search possible] /// | | List index | 0 | 1 | 2 | 3 | /// | OptionList | PointSize | 24 | 28 | 32 | 48 | - /// | | MinLineSize | 40 | 48 | 48 | 62 | << MinLineSize sorted in ascending order + /// | | MinLineSize | 40 | 48 | 48 | 62 | << MinLineSize sorted in ascending order /// ^ ^ /// same values ​are not a problem /// /// [Binary search not possible] /// | | List index | 0 | 1 | 2 | 3 | /// | OptionList | PointSize | 24 | 28 | 32 | 48 | - /// | | MinLineSize | 40 | 48 | 38 | 62 | << MinLineSize is not sorted in ascending order + /// | | MinLineSize | 40 | 48 | 38 | 62 | << MinLineSize is not sorted in ascending order /// ^ /// ///