| 1 |
public class; |
| 2 |
internal class; |
| 3 |
sealed class; |
| 4 |
abstract class; |
| 5 |
static class; |
| 6 |
partial class; |
| 7 |
public interface; |
| 8 |
public enum; |
| 9 |
public struct; |
| 10 |
public record; |
| 11 |
namespace declaration; |
| 12 |
using statement; |
| 13 |
field initialization; |
| 14 |
readonly field; |
| 15 |
const value; |
| 16 |
auto property; |
| 17 |
property get set; |
| 18 |
private set property; |
| 19 |
constructor injection(); |
| 20 |
base class inheritance; |
| 21 |
interface implementation; |
| 22 |
override method(); |
| 23 |
virtual method(); |
| 24 |
static method(); |
| 25 |
extension method(); |
| 26 |
event declaration; |
| 27 |
delegate declaration; |
| 28 |
lambda expression; |
| 29 |
linq.select().to list; |
| 30 |
linq.where().filter; |
| 31 |
linq.first or default(); |
| 32 |
linq.any() check; |
| 33 |
linq.all() check; |
| 34 |
linq.order by; |
| 35 |
list of values; |
| 36 |
dictionary key value; |
| 37 |
hash set values; |
| 38 |
read only collection; |
| 39 |
concurrent queue data; |
| 40 |
concurrent dictionary cache; |
| 41 |
cancellation token source; |
| 42 |
manual reset event slim; |
| 43 |
task.run() worker; |
| 44 |
task.completed task; |
| 45 |
task.from result; |
| 46 |
task.from canceled; |
| 47 |
async task method(); |
| 48 |
await task.delay(); |
| 49 |
await async call; |
| 50 |
try catch finally; |
| 51 |
throw new exception! |
| 52 |
throw invalid operation exception! |
| 53 |
throw not implemented exception! |
| 54 |
null check guard; |
| 55 |
is null check; |
| 56 |
is not null check; |
| 57 |
pattern matching is; |
| 58 |
return early; |
| 59 |
continue loop; |
| 60 |
break loop; |
| 61 |
if condition; |
| 62 |
else if branch; |
| 63 |
else branch; |
| 64 |
switch expression; |
| 65 |
case branch; |
| 66 |
default branch; |
| 67 |
for loop index; |
| 68 |
foreach item in collection; |
| 69 |
while condition loop; |
| 70 |
do while loop; |
| 71 |
lock synchronization block; |
| 72 |
using var declaration; |
| 73 |
object initializer; |
| 74 |
collection initializer; |
| 75 |
tuple deconstruction; |
| 76 |
clone object state; |
| 77 |
state update action; |
| 78 |
subscribe event handler(); |
| 79 |
unsubscribe event handler(); |
| 80 |
connect consumer(); |
| 81 |
disconnect consumer(); |
| 82 |
start background task(); |
| 83 |
stop background task(); |
| 84 |
process input data; |
| 85 |
consume command result; |
| 86 |
update ui action; |
| 87 |
validate input value! |
| 88 |
round to nearest; |
| 89 |
format output string; |
| 90 |
serialize to json; |
| 91 |
deserialize from json; |
| 92 |
get supported parameters(); |
| 93 |
get all settings(); |
| 94 |
save user settings(); |
| 95 |
load user settings(); |
| 96 |
quick save action! |
| 97 |
flow controller; |
| 98 |
view model; |
| 99 |
user input handler; |
| 100 |
api service; |
| 101 |
configuration provider; |
| 102 |
settings provider; |
| 103 |
value validator; |
| 104 |
message feed update; |
| 105 |
action dispatcher; |
| 106 |
state reducer; |
| 107 |
synchronization context; |
| 108 |
thread safe access; |
| 109 |
interlocked increment(); |
| 110 |
interlocked compare exchange(); |
| 111 |
equal_equal comparison; |
| 112 |
not_equal comparison; |
| 113 |
less comparison; |
| 114 |
greater comparison; |
| 115 |
less_equal comparison; |
| 116 |
greater_equal comparison; |
| 117 |
logical and; |
| 118 |
logical or; |
| 119 |
logical not; |
| 120 |
plus_equal update; |
| 121 |
minus_equal update; |
| 122 |
multiply_equal update; |
| 123 |
shiftleft operation; |
| 124 |
shiftright operation; |
Комментарии