7 references to Parse
Microsoft.Build (1)
BackEnd\Components\Scheduler\Scheduler.cs (1)
241
_nodeLimitOffset = Int16.
Parse
(strNodeLimitOffset, CultureInfo.InvariantCulture);
Microsoft.Maui.Controls (1)
Xaml\TypeConversionExtensions.cs (1)
177
return Int16.
Parse
(str, CultureInfo.InvariantCulture);
Microsoft.Maui.Controls.Build.Tasks (1)
NodeILExtensions.cs (1)
239
yield return Instruction.Create(OpCodes.Ldc_I4, unchecked((int)TryFormat(s => Int16.
Parse
(s, CultureInfo.InvariantCulture), node, str)));
System.Data.Common (2)
System\Data\SQLTypes\SQLInt16.cs (2)
81
return new SqlInt16(short.
Parse
(s, null));
266
return x.IsNull ? Null : new SqlInt16(short.
Parse
(x.Value, null));
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Convert.cs (1)
853
return short.
Parse
(value, provider);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DocumentDesigner.AxToolboxItem.cs (1)
271
majorVer = short.
Parse
(ver, CultureInfo.InvariantCulture);