comparison Implab/Components/IInitializable.cs @ 250:9f63dade3a40 v3

Working on runnable component
author cin
date Thu, 01 Feb 2018 02:43:35 +0300
parents 8200ab154c8a
children 7c7e9ad6fe4a
comparison
equal deleted inserted replaced
249:d82909310094 250:9f63dade3a40
10 /// <summary> 10 /// <summary>
11 /// Completes initialization. 11 /// Completes initialization.
12 /// </summary> 12 /// </summary>
13 /// <remarks> 13 /// <remarks>
14 /// Normally virtual methods shouldn't be called from the constructor, due to the incomplete object state, but 14 /// Normally virtual methods shouldn't be called from the constructor, due to the incomplete object state, but
15 /// they can be called from this method. This method is aьуерщlso usefull when we constructing a complex grpah 15 /// they can be called from this method. This method is also usefull when we constructing a complex grpah
16 /// of components where cyclic references may take place. 16 /// of components where cyclic references may take place.
17 /// </remarks> 17 /// </remarks>
18 void Initialize(); 18 void Initialize();
19 } 19 }
20 } 20 }