-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Week_2 #4
Comments
C# 에서 ref를 사용하는 것... |
C#에서 ref keyword 써서 뭔가 해보신 건가요? |
c에서 포인터를 사용하듯이 매개변수로 값을 넘겨주는 것에 대해 생각해봤는데, 찾아보니 return값을 tuple값을 한다던가로 대체 방법이 있더라구요. |
C로는 이렇게 구현하는 함수를 C#으로는 어떻게 비숫하게 구현할 수 있을까요? |
흥미로운 코드네요. static float tmp = 0; 이 코드가 static인 이유는 C 코드라서 그런 거겠죠? 만약 어떤 class 안에 있는 public property라고 하면 이렇게 해볼 수 있을 겁니다. class SomeObject
{
private float linePosition = 0.0f;
public float LinePosition
{
set
{
if (linePosition != value)
{
// Do something...
linePosition = value;
}
}
get => linePosition;
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: