Readdy Write  
0,00 €
Your View Money
Views: Count
Self 20% 0
Your Content 60% 0

Users by Links 0
u1*(Content+Views) 10% 0
Follow-Follower 0
s2*(Income) 5% 0

Count
Followers 0
Login Register as User

Web Api Client-Server 20180704: Part 3) clsSys.cs

04.07.2018 (👁3459)


Platform: UWP Univesal Windows 10 Platform App

Sprache: C#

clsSys.cs

System Klasse

Windows 10 Dialog Meldung

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

//< using >

using Windows.UI.Popups;    //*MessageDialog

//</ using >

 

public static class clsSys

    {

        public async static void show_Message(string sMessage)

        {

            MessageDialog dialog = new MessageDialog(sMessage, "Information");

            await dialog.ShowAsync();

        }

    }