DEV Community

asilbek ibragimov
asilbek ibragimov

Posted on

2 1 1 1 2

12. Exception Handling

12. Exception Handling

a)try, catch, finally bloklari qanday ishlaydi?

b) Quyidagi kod nima qiladi?

try
{
    int[] numbers = { 1, 2, 3 };
    Console. WriteLine (numbers [10]);
}
catch (IndexOutOfRangeException e)
{
    Console. WriteLine("Error: " + e.Message);
}
finally
{
    Console. WriteLine("Finally block executed.");
}
Enter fullscreen mode Exit fullscreen mode

Javoblari:
**
a) C# dasturlash tilida **try
, catch, va **finally **bloklari istisno (exception) holatlarini boshqarish uchun ishlatiladi. Ushbu bloklar kodni xatolardan himoya qilishga yordam beradi.

try bloki:

try
{
    int number = int.Parse("not_a_number");
}
catch bloki:

catch (FormatException ex)
{
    Console.WriteLine("Xato: noto'g'ri format.");
}
finally bloki:

finally
{
    Console.WriteLine("Finally bloki bajarildi.");
}

Enter fullscreen mode Exit fullscreen mode

b) try bloki ichida, numbers[10] ifodasi xatoga
olib keladi, chunki numbers massivining
faqat 0, 1 va 2 indekslari mavjud.

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay