Created
May 13, 2015 19:34
-
-
Save beckettkev/4fdb8309b9b6cad534d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _counter; | |
var _newsCount = int.Parse(_news.count); | |
if (_newsCount > _target.count) { | |
_counter = (_newsCount - _news.removed) * average; | |
} else { | |
_counter = (_target.count - _news.removed) * average; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment