Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.65K
Ranked #4K
~423 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for mesbahuk

// extension method, example: if( someString.StartsWith( "blah", 3 ) ){ /* do something */ } public static bool StartsWith ( this string s, string prefix, int toOffset ) { if ( null == s ) { throw new ArgumentNullException( "this" ); } return s.Substring( toOffset ).StartsWith( prefix ); }

Member Avatar for JoeProgrammer
0
423

The End.