Ergebnis 1 bis 3 von 3
  1. #1
    Neuling
    Registriert seit
    27.04.2016
    Beiträge
    4

    Standard c#->vb.net übersetzung =)

    Hallo ^^ kann mir das mal jemand c# in vb.net übersetzen?


    Code:
    using System;using System.Threading.Tasks;
    using PUBGSharp.Data;
    using PUBGSharp.Exceptions;
    using PUBGSharp.Helpers;
    
    
    namespace PUBGSharp.Examples
    {
        internal class Program
        {
            private Program()
            {
            }
    
    
            public static void Main(string[] args) => new Program().MainAsync().GetAwaiter().GetResult();
    
    
            private async Task MainAsync()
            {
                // Create client and send a stats request You can either use the "using" keyword or
                // dispose the PUBGStatsClient manually with the Dispose method.
                using (var statsClient = new PUBGStatsClient("api-key-here"))
                {
                    var stats = await statsClient.GetPlayerStatsAsync("Mithrain").ConfigureAwait(false);
    
    
                    // Print out player name and date the stats were last updated at.
                    Console.WriteLine($"{stats.PlayerName}, last updated at: {stats.LastUpdated}");
    
    
                    try
                    {
                        // Print out amount of players KDR (Stats.KDR) in DUO mode (Mode.Duo) in ALL
                        // regions (Region.AGG) in SEASON 1 (Seasons.EASeason1).
                        var kdr = stats.Stats.Find(x => x.Mode == Mode.Duo && x.Region == Region.AGG && x.Season == Seasons.EASeason1).Stats.Find(x => x.Stat == Stats.KDR).Value;
                        Console.WriteLine($"Duo KDR: {kdr}");
                        // Print out amount of headshots kills in SOLO mode in NA region in SEASON 2.
                        var headshotKills = stats.Stats.Find(x => x.Mode == Mode.Solo && x.Region == Region.NA && x.Season == Seasons.EASeason2).Stats.Find(x => x.Stat == Stats.HeadshotKills);
                        // You can also display the stats by using .ToString() on the stat object, e.g:
                        Console.WriteLine(headshotKills.ToString());
    
    
                        // Print out amount of kills in the last season player has played in:
                        var latestSeasonSoloStats = stats.Stats.FindLast(x => x.Mode == Mode.Solo);
                        var kills = latestSeasonSoloStats.Stats.Find(x => x.Stat == Stats.Kills);
                        Console.WriteLine($"Season: {latestSeasonSoloStats.Season}, kills: {kills.Value}");
                    }
                    /* IMPORTANT STUFF ABOUT EXCEPTIONS:
                     The LINQ and other selector methods (e.g. .Find) will throw NullReferenceException in case the stats don't exist.
                     So if player has no stats in specified region or game mode, it will throw NullReferenceException.
                     For example, if you only have played in Europe and try to look up your stats in the Asia server, instead of showing 0's everywhere it throws this. */
                    catch (PUBGSharpException ex)
                    {
                        Console.WriteLine($"Could not retrieve stats for {stats.PlayerName}, error: {ex.Message}");
                    }
                    catch (NullReferenceException)
                    {
                        Console.WriteLine($"Could not retrieve stats for {stats.PlayerName}.");
                        Console.WriteLine("The player might not exist or have stats in the specified mode or region.");
                    }
    
    
                    /* Outputs:
                    Mithrain, last updated at: 2017-09-07T19:53:40.3611629Z
                    Duo KDR: 2.87
                    Stat: Headshot Kills, value: 69, Rank: #
                    Season: 2017-pre4, kills: 32
                    */
                }
    
    
                await Task.Delay(-1);
            }
        }
    }


    Danke MfG DeniD

  2. #2
    Tron Avatar von gORDon_vdLg
    Registriert seit
    23.07.2007
    Beiträge
    801

    Standard AW: c#->vb.net übersetzung =)

    Das ist doch jetzt keine große Aufgabe, das bekommst du auch selbst hin wenn du dir die Grundlagen beider Sprachen ansiehst, vorher kannst du eh nicht weiter machen.

  3. Folgende Benutzer haben sich für diesen Beitrag bedankt:

    Cystasy (18.11.2017)

  4. #3
    Sobig Wurm Avatar von BlackHook
    Registriert seit
    13.03.2009
    Beiträge
    219

    Standard AW: c#->vb.net übersetzung =)

    Schaue mal bei google nach oder direkt hier: http://www.carlosag.net/Tools/CodeTranslator/

Ähnliche Themen

  1. Russisch? - Deutsch übersetzung?
    Von Silent im Forum Serious Discussions
    Antworten: 0
    Letzter Beitrag: 14.08.2010, 15:02

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •