Horje
remove first character in a string c# Code Example
remove first character in a string c#
// initial string is "/temp" it will be changed to "temp"
data.Remove(0,1);
data.TrimStart('/');
data.Substring(1);




Csharp

Related
How can I cast string to enum? Code Example How can I cast string to enum? Code Example
c# 2d list Code Example c# 2d list Code Example
c# download string url Code Example c# download string url Code Example
waitforseconds unity Code Example waitforseconds unity Code Example
c# map Code Example c# map Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8