puts ":)"

Dec 21, 2018

[Link] 프로그래머 추천도서

추천도서 64권 :
https://iostream.tistory.com/64

추천도서 50권 :
https://www.sangkon.com/2018/08/27/good_books_for_dev_2018/
Posted by giuu223 at 14:58 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Books

[Link] 유니티 최적화 : 배칭과 드로우콜

http://mentum.tistory.com/53
Posted by giuu223 at 14:52 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Unity3D

Dec 18, 2018

[Link] Re-thinking in ECS

http://www.davidpol.com/2018/03/28/survival-shooter-ecs/


+) Entitas
https://github.com/sschmid/Entitas-CSharp
Posted by giuu223 at 12:15 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Unity3D

Dec 6, 2018

Action(arg) vs Action.Invoke(arg)

Action(arg) : Cannot use Null-Conditional operator
Action.Invoke(arg) : Can use Null-Conditional operator with C# 6

----------------
Action(arg) :

Action DoSomething = null;
if(DoSomething != null)
     DoSomething();


C#6 Action.Invoke(arg) :

Action DoSomething = null;
DoSomething?.Invoke();
Posted by giuu223 at 11:54 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: C#
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

About

Giu Lee
giuu223@gmail.com

Search

Menu

  • Algorithms (1)
  • Books (2)
  • C# (2)
  • Cpp (4)
  • Etc (1)
  • Git (1)
  • iOS (1)
  • Kinect (10)
  • Linux (1)
  • Network (2)
  • OpenCV (9)
  • OpenGL (4)
  • Programming (1)
  • Unity3D (20)

Blog Archive

  • ►  2020 (3)
    • ►  July (1)
    • ►  May (1)
    • ►  January (1)
  • ►  2019 (5)
    • ►  December (3)
    • ►  April (1)
    • ►  February (1)
  • ▼  2018 (8)
    • ▼  December (4)
      • [Link] 프로그래머 추천도서
      • [Link] 유니티 최적화 : 배칭과 드로우콜
      • [Link] Re-thinking in ECS
      • Action(arg) vs Action.Invoke(arg)
    • ►  September (1)
    • ►  August (1)
    • ►  March (1)
    • ►  January (1)
  • ►  2016 (16)
    • ►  October (1)
    • ►  September (2)
    • ►  August (1)
    • ►  July (2)
    • ►  June (4)
    • ►  May (2)
    • ►  March (2)
    • ►  February (2)
  • ►  2015 (27)
    • ►  August (15)
    • ►  July (8)
    • ►  May (1)
    • ►  April (1)
    • ►  March (2)

Popular Posts

  • adb logcat
  • [Link] 구조체와 클래스의 차이
  • Unity NGUI Label에 한글 적용 문제 해결
  • [link] 데이터 정규화 (DATA Normalization)
  • #include gl.h -> not working
  • [LINK] 머리 위에 Health Bar 표시
  • Book lists
  • [Link] Kinect + OpenNI
  • refusing to merge
  • Difference between ' const int* ' and ' int* const '
Simple theme. Powered by Blogger.