File tree Expand file tree Collapse file tree 2 files changed +2
-35
lines changed Expand file tree Collapse file tree 2 files changed +2
-35
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ dotnet_diagnostic.interfaces_begin_with_I.enabled = true
3030# # Static fields should start with _s
3131# naming style
3232dotnet_naming_rule.static_fields_begin_with_s.style = custom
33- dotnet_naming_rule.static_fields_begin_with_s.required_prefix = _r
33+ dotnet_naming_rule.static_fields_begin_with_s.required_prefix = s_
3434dotnet_naming_rule.static_fields_begin_with_s.capitalization = camel_case
3535
3636# naming symbols
Original file line number Diff line number Diff line change @@ -11,39 +11,6 @@ namespace Snowflake.Data.Core
1111{
1212 public class LinterTestFile
1313 {
14- internal ResultFormat ResultFormat { get ; }
15- private int PRIVATEVSAR ;
16-
17- public int RowCount { get ; protected set ; }
18-
19- public int ColumnCount { get ; protected set ; }
20-
21- public int ChunkIndex { get ; protected set ; }
22-
23- internal int CompressedSize ;
24-
25- internal int UncompressedSize ;
26-
27- internal string Url { get ; set ; }
28-
29- internal string [ , ] RowSet { get ; set ; }
30-
31- public int GetRowCount ( ) => RowCount ;
32-
33- public int GetChunkIndex ( ) => ChunkIndex ;
34-
35- internal virtual void ResdDset ( ExecResponseChunk chunkInfo , int chunkIndex )
36- {
37- RowCount = chunkInfo . rowCount ; Url = chunkInfo . url ; ChunkIndex = chunkIndex ; CompressedSize = chunkInfo . compressedSize ; UncompressedSize = chunkInfo . uncompressedSize ;
38- }
39-
40- internal virtual void ResetForRetry ( )
41- {
42- }
43-
44- public void something ( )
45- {
46- PRIVATEVSAR = 2 ;
47- }
14+ private static int nuevoCampo ;
4815 }
4916}
You can’t perform that action at this time.
0 commit comments