Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force function to return value and make compile error C#

Tags:

c#

.net

I have a class and a method within that class. However this class method returns a string. When I call the class method I don't get an error even though I'm not catching the string value return. Is there a way that I can make C# and .net force me to capture the value when returning a value. Here is an example of what I mean.

1- create a class test.

class test
    {

        public string mystring() {

            return "BLAH";

        }
    }

2- call the class method from program or another class

test mystring = new test();
mystring.mystring();

My compiler while working in Visual Studio does not complain that I'm not capturing the return value. Is this normal or I'm missing something. Can I force the compiler to notify me that the function returns a value but I'm not catching it?

Thanks in advance for any suggestions you may have.

like image 668
Miguel Avatar asked Nov 10 '14 21:11

Miguel


3 Answers

You could convert this to a property instead of a method:

  public string myString
  {
    get
    {
      return "Blah";
    }
  }

Then you can't compile if you simply call the property:

myString.myString; //Results in "Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement" Error
like image 51
MikeH Avatar answered Nov 02 '22 20:11

MikeH


In a word, no. Not by force as such.

It's commonplace to not capture return values. Examples in the core libs abound (adding elements to a Hashset<T> for example, the function actually returns a bool to flag whether it was actually added or if it already existed - depending on individual implementation I may or may not care about that).

Of course, you can always just do something like string str = MyFunction() each time then never use str but I guess you probably already knew that.

like image 25
Stewart_R Avatar answered Nov 02 '22 19:11

Stewart_R


You can try turning on warnings as errors by right-clicking the project in solution explorer, clicking Properties, going to the Build tab and setting Treat warnings as errors to all. This will force you to resolve all warnings before you can build and will capture some of the you-didn't-assign-this scenarios.

The compiler can't know that the only purpose of your method is to return the string or if it does some work that affects state, and so it can't complain when you don't assign the result to anything.

You can, however, set it up as a get only property per MikeH's answer. This will complain when you don't assign it to anything.

like image 23
Steve Lillis Avatar answered Nov 02 '22 20:11

Steve Lillis