Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#using statement and disposalSingle-choice MCQ

Two using statements are nested. In what order are the objects disposed?

using (var a = new Res("A")) using (var b = new Res("B")) { // work }