Home > Backend Development > C++ > Why Does 'An Object Reference is Required for the Non-Static Field' Occur in C# and How Can It Be Fixed?

Why Does 'An Object Reference is Required for the Non-Static Field' Occur in C# and How Can It Be Fixed?

Barbara Streisand
Release: 2025-01-22 05:19:10
Original
567 people have browsed it

Why Does

C# error: "A reference to an object is required to use non-static fields"

This C# code contains two classes: one defines the algorithm parameters and the other implements the algorithm. In the Main method of the second class, I get the following error:

<code>需要对象的引用才能使用非静态字段、方法或属性 'VM_Placement.Program.GetRandomBits()'</code>
Copy after login

This error is because the Main method is static and you are trying to call a non-static method in GetRandomBits().

Solution:

To solve this problem, you can choose the following two methods:

  1. Create an instance of the Program class:

    In the Main method, create an instance of the Program class and then call GetRandomBits() on that instance:

    <code class="language-csharp">Program p = new Program();
    string bits = p.GetRandomBits();</code>
    Copy after login
  2. Make the GetRandomBits() method static:

    Modify the GetRandomBits() method declaration to make it a static method:

    <code class="language-csharp">public static string GetRandomBits()
    {
        ...
    }</code>
    Copy after login

After making a method static, you can call it directly without creating an instance of the Program class.

The above is the detailed content of Why Does 'An Object Reference is Required for the Non-Static Field' Occur in C# and How Can It Be Fixed?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template