Can we have more than 1 partial classes in the same file?
Answers were Sorted based on User's Feedback
Answer / ssv_sathish
YES, basically, partial classes are meant for sharing or
working on different files. so you can have 2 partial
classes in the same file or different class declared as
partial in the same file, provided PUBLIC is the access
modifier.
| Is This Answer Correct ? | 35 Yes | 4 No |
It is possible to have partial class in same class file.
Partial Class Concept was used in dotnet to provide
practically dividing the class into two or multiple physical
files. In order to keep the complexity of class
simple.During compilation the partial classes join together
to form a single class and works as normal class
partial class First
{
public static void DoSomething1()
{
Console.WriteLine("Executing from First Part of
Class First");
}
}
partial class First
{
public static void DoSomething2()
{
Console.WriteLine("executing from second part of
class First");
}
}
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / m.karunakar
yes.more than one programmer working in the same module in
the project.example one progrmmer writing one method in main
system and ononther programmer can also add onother method
are functionlity that class by using partial class.
| Is This Answer Correct ? | 3 Yes | 0 No |
Explain RenderBody and RenderPage in ASP.Net MVC?
What is different between User Control and Web Control and Custom Control?
What is CLR? How it will work?
What are Code Blocks in Views?
What is the difference between adding routes, to a webforms application and to an mvc application?
What is the difference between string and String
Explain tempdata in asp.net mvc?
Which is the best institute in hyderabad to learn DotNet?
152 Answers Cygnet Infotech, Infosys, Student, SVIT, TCS,
What is Value type and reference type in .Net
Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Qu)I Got Exception in "try" block. Which "catch" statement (i.e. 1st catch or 2nd catch ) catches the exception and Why???
Explain the advantages of dependency injection (di) in asp.net mvc?
Explain the advantages of asp.net mvc over asp.net?