vote up 0 vote down star

in ASP.NET C#., How can i set the variable values of a static class from the value present in a non static class .edx : I have a static class called staticA and a non static class called B which inhertits system.WEb.UI.Page. I have some values present in the class B ,which i want to set as the property value of the static class A so that i can use it throughout the project

Any thoughts ?

flag

55% accept rate

3 Answers

vote up 3 vote down check
staticA.AValue = b.BValue
link|flag
is b is Object of class B ? – Shyju Oct 22 at 6:03
Yea it is, you can write just BValue if you are in the class B's method – ArsenMkrt Oct 22 at 6:42
vote up 1 vote down

The "proper" approach would be to pass your specific instance of B (don't confuse a class and its instances!!!) to a method of A which will copy whatever properties (or other values) it needs to.

link|flag
vote up 1 vote down

See following example:

 public static class staticA 
{
    /// <summary>
    /// Global variable storing important stuff.
    /// </summary>
    static string _importantData;

    /// <summary>
    /// Get or set the static important data.
    /// </summary>
    public static string ImportantData
    {
        get
        {
            return _importantData;
        }
        set
        {
            _importantData = value;
        }
    }
}

and in classB

public partial class _classB : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        // 1.
        // Get the current ImportantData.
        string important1 = staticA.ImportantData;

        // 2.
        // If we don't have the data yet, initialize it.
        if (important1 == null)
        {
            // Example code only.
            important1 = DateTime.Now.ToString();
            staticA.ImportantData = important1;
        }

        // 3.
        // Render the important data.
        Important1.Text = important1;
    }
}

Hope, It helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.