© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•3y ago•
42 replies
CaptainFallaway

❔ Cannot import another project

The image is the file structure of the solution. I'm trying to use the PasswordMangerLibrary. But it isn't letting me.

Program.cs:
using PasswordManagerLibrary;

namespace PasswordManagerConsoleApp
{
    static class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}
using PasswordManagerLibrary;

namespace PasswordManagerConsoleApp
{
    static class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}


Manager.cs:
namespace PasswordManagerLibrary
{
    public class Manager
    {
        public static void Trying()
        {
            Console.WriteLine("Works!");
        }
    }
}
namespace PasswordManagerLibrary
{
    public class Manager
    {
        public static void Trying()
        {
            Console.WriteLine("Works!");
        }
    }
}


I feel like this is something really easy to fix but keep in mind i have a fever and i'm not fully operational 😅 .
image.png
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Cannot open project
C#CC# / help
14mo ago
✅ EFCore cannot map another entity
C#CC# / help
3y ago
another problem with my project
C#CC# / help
2y ago
Accessing data from another project
C#CC# / help
4y ago