-
Notifications
You must be signed in to change notification settings - Fork 5
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
Commenting Setters #38
Changes from 1 commit
d91d1ad
7305d0e
026d250
bf1f3ae
38212ef
00e37ea
41d8ad1
470cdb8
e477540
8387a3e
a3c6bdc
863b25a
4fa4916
0cd5bed
51e3f90
bf9169e
d7db23f
60b4441
12faf67
a7b8c66
cd3a4ce
75a00d7
8d25554
95704cb
d246dd9
19e1a2e
f5cfb3b
788318e
9c01d32
b4d0fc4
02e20b1
b4e5755
c100650
042b81d
4741355
5b5cf00
8658f0f
f72a42d
cbc8708
553725e
7462dc0
8accc87
3afc63b
3ef92d8
80d961e
6d5ea66
8212c44
6cbe27b
635fc9c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -14,8 +14,8 @@ namespace Platform.Setters | |||||
/// <para>Тип результирующего значения.</para> | ||||||
/// </typeparam> | ||||||
/// <typeparam name="TDecision"> | ||||||
/// <para>The type of a value which will be used to make the decision.</para> | ||||||
/// <para>Тип значения на основе которого будет приниматься решение.</para> | ||||||
/// <para>The type of a true and false value.</para> | ||||||
qwasd3lol marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
/// <para>Тип значений "истина" и "ложь".</para> | ||||||
qwasd3lol marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
/// </typeparam> | ||||||
Konard marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
public class Setter<TResult, TDecision> : SetterBase<TResult> | ||||||
{ | ||||||
|
@@ -55,7 +55,7 @@ public Setter(TDecision trueValue, TDecision falseValue, TResult defaultValue) | |||||
public Setter(TDecision trueValue, TDecision falseValue) : this(trueValue, falseValue, default) { } | ||||||
|
||||||
/// <summary> | ||||||
/// <para>Initializes a new instance of the <see cref="Setter{TResult, TDecision}"/> class with the <paramref name="defaultValue"/>.</para> | ||||||
/// <para>Initializes a new instance of the <see cref="Setter{TResult, TDecision}"/> class with the <paramref name="defaultValue"/> as result.</para> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do not forget about article There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you need an article here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||
/// <para>Инициализирует новый экземпляр класса <see cref="Setter{TResult, TDecision}"/>, со значением <paramref name="defaultValue"/> в качестве результата по умолчанию.</para> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
/// </summary> | ||||||
[MethodImpl(MethodImplOptions.AggressiveInlining)] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You should add |
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.