You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>Creates an <see cref="NSString" /> from a C# string.</summary>
171
+
/// <param name="value">A C# string to create an <see cref="NSString" /> from.</param>
172
+
/// <param name="start">The starting index of the <paramref name="value" /> string to create the <see cref="NSString" /> from.</param>
173
+
/// <param name="length">The length, starting at <paramref name="start" />, of the <paramref name="value" /> string to create the <see cref="NSString" /> from.</param>
175
174
publicNSString(stringvalue,intstart,intlength)
175
+
:base(NSObjectFlag.Empty)
176
176
{
177
177
if(valueisnull)
178
178
thrownewArgumentNullException(nameof(value));
@@ -183,7 +183,7 @@ public NSString (string value, int start, int length)
0 commit comments