Skip to content

+EA 23.295 Stable Patch 2 - Plugin.BaseCore

April 15, 2026

1 file modified.

Important Changes

None.

ClassExtension

public static int ToInt(this string str)

cs
		return 0;
	}

	public static long ToLong(this string str) 
	{ 
		if (long.TryParse(str, out var result)) 
		{ 
			return result; 
		} 
		return 0L; 
	} 
	public static float ToFloat(this string str)
	{
		float result = 0f;