Appspotdemo.Mono.Droid.StringHelperClass.StartsWith C# (CSharp) Method

StartsWith() static private method

static private StartsWith ( this self, string prefix, int toffset ) : bool
self this
prefix string
toffset int
return bool
        internal static bool StartsWith(this string self, string prefix, int toffset)
        {
            return self.IndexOf(prefix, toffset) == toffset;
        }