2つのフォーム間でオブジェクト(基本的に、現在ログオンしているユーザーへの参照)を渡そうとしています。現時点では、ログインフォームに次のような行があります。
private ACTInterface oActInterface;
public void button1_Click(object sender, EventArgs e)
{
oActInterface = new ACTInterface(@"\\actserver\Database\Premier.pad",this.textUser.Text,this.textPass.Text);
if (oActInterface.checkLoggedIn())
{
//user has authed against ACT, so we can carry on
clients oClientForm = new clients(oActInterface);
this.Hide();
oClientForm.Show();
}
else...
次のフォーム(クライアント)では、次のようになります。
public partial class clients : Form
{
private ACTInterface oActInt {get; set;}
public clients(ACTInterface _oActInt)
...これは私が得る結果になります:
Error 1 Inconsistent accessibility:
parameter type 'support.ACTInterface' is less accessible than method
'support.clients.clients(support.ACTInterface)'
c:\work\net\backup\support\support\clients.cs 20 16 support
私は問題が何であるか本当に理解していません-両方のフィールドはプライベートであり、フォームから関連するパブリックメソッドによってアクセスされます。グーグルは、1つの要素がパブリックであり、他の要素がプライベートであることを示しているだけなので、実際には役に立ちませんが、ここではそうではありません。
誰か助けて?