Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Program.cs « LightupClient « TestProjects « Assets « tests « installer « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 131198bd890d2f6b4be98ea4586ee48a8f680110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.IO;
using System.Reflection;

namespace LightupClient
{
    public static class Program
    {
        public static int Main(string[] args)
        {
            Assembly asmGreet = null;
            int iRetVal = 0;

            try
            {
                asmGreet = Assembly.Load(new AssemblyName("LightupLib"));
                
                // Get reference to the method that we wish to invoke
                Type type = asmGreet.GetType("LightupLib.Greet");
                var method = System.Reflection.TypeExtensions.GetMethod(type, "Hello");

                // Invoke it
                string greeting = (string)method.Invoke(null, new object[] {"LightupClient"});
                Console.WriteLine("{0}", greeting);
            }
            catch(FileNotFoundException ex)
            {               
                Console.WriteLine("Exception: Failed to load the lightup assembly!");
                Console.WriteLine(ex.ToString());
                iRetVal = -1;
            }

            return iRetVal;
        }
    }
}