Issue
How can I use ref variable outside the calling method in C#.
I will explain what I would like to acheive.
I have a method inside a class(MyClass), which looks like
private MyObject myobj;
public ref MyObject GetMyObject()
{
return ref myobj;
}
Now I am fetching the variable inside another method from different class(FetchClass)
private MyObject fetchObj;
void Start()
{
fetchObj = ref MyClass.instance.GetMyObject(); //getting error here
}
I like to use fetchObj in different method in the same class. Thats the reason I have declared outside. But I am getting error in Start method.
Solution
Since your MyObject
is a class you can use an expression bodied read-only property:
private MyObject fetchObj => MyClass.instance.GetMyObjectNotByRef();
Answered By - Guru Stron Answer Checked By - David Marino (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.