SR.GetByte Method

Definition

Returns an 8-bit unsigned integer. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

Overloads

GetByte(String)

Returns the name of the specified String. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

GetByte(CultureInfo, String)

Returns the name of the specified String, formatted with respect to the specified culture. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

GetByte(String)

Returns the name of the specified String. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 static System::Byte GetByte(System::String ^ name);
public static byte GetByte (string name);
static member GetByte : string -> byte
Public Shared Function GetByte (name As String) As Byte

Parameters

name
String

The name of the String object to be returned.

Returns

The value of the String referred to by the name parameter.

See also

Applies to

GetByte(CultureInfo, String)

Returns the name of the specified String, formatted with respect to the specified culture. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 static System::Byte GetByte(System::Globalization::CultureInfo ^ culture, System::String ^ name);
public static byte GetByte (System.Globalization.CultureInfo culture, string name);
static member GetByte : System.Globalization.CultureInfo * string -> byte
Public Shared Function GetByte (culture As CultureInfo, name As String) As Byte

Parameters

culture
CultureInfo

A CultureInfo that contains the relevant cultural information used to format the return value.

name
String

The name of the String to be returned.

Returns

The value of the String referred to by the name parameter, formatted with respect to the culture information contained in the CultureInfo referred to by the culture parameter.

See also

Applies to