If I write a for, do, or while loop, is it possible to come out of this with the return keyword?
Eg:
class BreakTest { public static void Main() {
Answer way overdue but return; will exit your whole method (so out of your loop, too) if its return type is void. If it's not, it just won't compile unless your return the method's type.
return;