Installing a Component Service without methods

  • 13 years ago
    I'm trying to create a component service in C# with this code:
    using System;
    using System.ComponentModel;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Text;
    using System.EnterpriseServices;
     
    namespace COMPlusDotNet
    {
          public class hello : ServicedComponent
        {
            public hello()
            {
            }

            public static void world()
            {
                Console.WriteLine("Hello World.");
            }
        }
     }
    After resolving all the problems related with the assembly key, now I can install the component service in my application but doesn't appear the methods.






















    Does anyone knows what I'm doing wrong?




Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Theory is when you know something, but it doesn't work. Practice is when something works, but you don't know why. Programmers combine theory and practice: Nothing works and they don't know why.”