isn/src/isnd/Helpers/ParamHelpers.cs
2021-09-05 15:44:47 +01:00

16 lines
No EOL
361 B
C#

namespace isnd.Helpers
{
public static class ParamHelpers
{
public static string Optional(ref string prm)
{
int sopt = prm.IndexOf('/');
if (sopt>0)
{
prm = prm.Substring(0,sopt);
return prm.Substring(sopt + 1);
}
return null;
}
}
}