Ahojte, robím program, a chcel by som aby v jednej dll boli premenné, v druhej boli funkcie atd. Mám vytvorenú dll s názvom mathprm ktorá má takýto kód
/*
* Created by SharpDevelop.
* User: Michal
* Date: 6.2.2008
* Time: 7:16
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace mathprm
{
//Vytvorenie triedy Mathprm ktorá je potomkom triedy UserControl
public partial class Mathprm : UserControl
{
int kocka_a;
public Mathprm()
{
}
}
}
a všetko beží v pohode. Problém je až v dll mathfcie ktorá má nasledújuci kód /*
* Created by SharpDevelop.
* User: Michal
* Date: 6.2.2008
* Time: 7:10
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using mathprm;
namespace mathprm
{
//Vytvorenie rozdelenej triedy Mathfcie, ktorá je potomkom triedy UserControl
public partial class Mathfcie : UserControl
{
public Mathfcie()
{
}
}
//Vytvorenie triedy, ktorá bude dediť rozhranie
public class VypocetObsahuKocky
{
public VypocetObsahuKocky()
{
}
//Vytvorenie funkcie ktorá vypočíta obsah kocky
public int ObsahKocky()
{
int obsahKocky = mathprm.Mathprm.kocka_a * mathprm.Mathprm.kocka_a;
return obsahKocky;
}
}
}
Pravdaže mám pripojenú assembly mathprm. Hádže to chybu(v UserControl1.Designer ktorý má takýto kódC:\Documents and Settings\Michal\My Documents\SharpDevelop Projects\mathfcie\mathfcie\UserControl1.Designer.cs(22,27) : Error CS0115: 'mathfcie.Mathfcie.Dispose(bool)': no suitable method found to override
Build finished successfully.
/*
* Created by SharpDevelop.
* User: Michal
* Date: 6.2.2008
* Time: 7:10
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace mathfcie
{
partial class Mathfcie
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
//
// UserControl1
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Name = "Mathfcie";
}
}
}
Viem že sa vlastne pokúša prepísať metódu, lebo je tam override, ale nechápem prečo a ktorú. Mám taký pocit že sa pokúša prepísať metódu protected override void Dispose(bool disposing) ktora sa nachádza v UserControl1.Designer.cs v mathprm, ale nie som si istý, ak áno, ako to vyriešiť?