C# App Temperature Conversion Example Part 02 math formulas

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 พ.ย. 2024

ความคิดเห็น • 31

  • @langrisserffxi
    @langrisserffxi 4 ปีที่แล้ว +6

    Hi! Excellent video as always. Am really enjoying the C# content. One thing though, the formula for Kelvin is Celsius + 273, not Celsius - 273. I couldn't seem to get the other two buttons to input the correct numbers until I figured out that the formula was wrong.

  • @brunoalvesb2610
    @brunoalvesb2610 3 ปีที่แล้ว +3

    Thank you so much for the lessons it really helped me, I was already stopping to try learning programming but it gave me a gas to continue!

  • @alisaleem2381
    @alisaleem2381 4 ปีที่แล้ว +1

    Thank you sir. Really enjoying your content please do not stop making such precious videos...

  • @shwetachavan751
    @shwetachavan751 8 หลายเดือนก่อน

    Thank you so much for detailed explanation video. I was able to do other 2 conversion buttons. Now I can create windows Forms.

  • @kiranmaielaprolu9751
    @kiranmaielaprolu9751 4 ปีที่แล้ว +1

    Thank you for detailed explanation 🙏 able to complete the assignment. Looking forward to the amazing stuff as always you are providing us. May God bless you 🙏

  • @yusuffakhreddin263
    @yusuffakhreddin263 2 ปีที่แล้ว

    Very detailed and beginner friendly explanation

  • @cerulee
    @cerulee 4 ปีที่แล้ว

    Thanks so much! I was getting a 0019 error and had no idea why, but I had forgotten to use parse and tostring to convert the input so the app could actually use it. Now my program works perfectly.

  • @justfindout3491
    @justfindout3491 2 ปีที่แล้ว

    Thanks for this video. I have been looking for someone can teach like you did and you do. I will suggest it any beginner in c#

  • @maxajames
    @maxajames 3 ปีที่แล้ว

    Sir, your channel is a treasure trove!

    • @shadsluiter
      @shadsluiter  3 ปีที่แล้ว

      Wow, thanks! Have you made some apps with it?

    • @maxajames
      @maxajames 3 ปีที่แล้ว

      @@shadsluiter Yeah, I've made some basic ones now. And I'm sure I'll get better at it, all thanks to wonderful teachers like you on TH-cam! Greetings from Kerala, India!

  • @rushas
    @rushas 4 ปีที่แล้ว

    This really helped me to get a good idea on how to do gui programming on C#. Thank you very much

  • @nodomalazonia7605
    @nodomalazonia7605 2 ปีที่แล้ว

    excellent videos, thank you so much.

  • @yaxyerosi1846
    @yaxyerosi1846 3 ปีที่แล้ว

    Thank you very much for helping me my assigment

  • @shuhadloofer7192
    @shuhadloofer7192 3 ปีที่แล้ว

    I'm doing this code now and yes it works for the most part but for some reason in the textbox changed events for all 3 textboxes I get a StackOverFlow exception on my toString lines

    • @shadsluiter
      @shadsluiter  3 ปีที่แล้ว

      There should be three different onChange event handlers. A circular call to the event may be cause the program to get into an infinite loop by triggering itself.

  • @bhupendradewangan43
    @bhupendradewangan43 3 ปีที่แล้ว

    Thank u so much sir....

  • @prezlamen
    @prezlamen 3 ปีที่แล้ว

    There is only 0 Kelvin`s : )
    What is the best book to learn that you shown?
    I dont know where to learn properties "somthing.somthing" when I need to give instructions

  • @sandorszabo7220
    @sandorszabo7220 ปีที่แล้ว

    at 13:47 you get the error message after deleting the number from the box (on text change). It is because the empty box is caught by our try / catch code.
    Could you pleae advise how to avoid it?

  • @BlessedLaymanNC
    @BlessedLaymanNC 2 ปีที่แล้ว

    The problem I have is that when I type in the box, it works with only the Fahrenheit (spell check just got our Fahrenheight, LOL) box. If I add it to the others, when I change to another box, they all try to update the one I'm typing in and it messes me up. When I delete all the numbers, I get a popup error message.

  • @RajagopallanV
    @RajagopallanV 8 หลายเดือนก่อน

    Can someone give the formula tor conversion of kelvin to fahrenheit and kelvin to celsius

    • @shwetachavan751
      @shwetachavan751 8 หลายเดือนก่อน

      float f = (k - 273.15f) * 9 / 5 + 32; --------- (Kelvin to Fahrenheit)
      float c = k - 273.15f; -----------------------------(Kelvin to Celsius)

  • @woodrowwinters4159
    @woodrowwinters4159 4 ปีที่แล้ว +1

    I can't figure out how to convert Kelvin to Fahrenheit. Here is my code (kelvin) − 273.15) × 9 / 5 + 32;

    • @shadsluiter
      @shadsluiter  4 ปีที่แล้ว +1

      (0K − 273.15) × 9/5 + 32 = -459.7°F

    • @samsungsamsung-hd3bj
      @samsungsamsung-hd3bj 4 ปีที่แล้ว

      Would be great to see open code in GitHub, if it is possible?

  • @RajagopallanV
    @RajagopallanV 8 หลายเดือนก่อน

    Okay, can someone give the correct formula kelvin to fahrenheit and kelvin to celsius

    • @shwetachavan751
      @shwetachavan751 8 หลายเดือนก่อน +1

      float f = (k - 273.15f) * 9 / 5 + 32; --------- (Kelvin to Fahrenheit)
      float c = k - 273.15f; -----------------------------(Kelvin to Celsius)

    • @RajagopallanV
      @RajagopallanV 8 หลายเดือนก่อน

      Thanks@@shwetachavan751