C# Creating an interface and implementation in shared project

  • Thread starter Thread starter Madaxe
  • Start date Start date
M

Madaxe

Guest
I have a shared C# Project which contains two folders Interfaces and Implementations, it builds but does not auto implement the interface or recognize the interface


using System;
using System.Collections.Generic;
using System.Text;

namespace InterfacesAndImplementations.Interfaces
{
interface ICustomBase
{
string Name { get; set; }
}
}


using System;
using System.Collections.Generic;
using System.Text;

namespace InterfacesAndImplementations.Implementations
{
class CustomBase : ICustomBase
{

}
}


thanks


Madaxe


As Busy As A Bricky In Beirut

Continue reading...
 
Back
Top