The conditions Offshore were nice this week and resulted in some good fishing out of Flamingo! We raised an average of 7 sailfish and 1 marlin per day this week. The tuna bite was strong – we had to pick up and run away from them after we caught our quota. Our clients also boated a few dorado throughout the week and on the inshore caught 2 30# Cubera snapper and a Jack.



Q: How to split a string in c#
A: The String.Split
method can be used to split a string.string[] words = str.Split(' ');
The above code splits the string into an array of words, using a blank space as the delimiter.