C# Custom getter/setter without private variable - MicroEducate

文章推薦指數: 80 %
投票人數:10人

C# Custom getter/setter without private variable. by Micro Admin. I learned c# recently, so when I learned to write properties, I was taught to do it like ... Skiptocontent MenuIlearnedc#recently,sowhenIlearnedtowriteproperties,Iwastaughttodoitlikethis:publicstringName{get;set;} Autopropertiesaregreat!ButnowI’mtryingtodosomethingalittlemorecomplicated,soIneedtowriteacustompairofaccessors.privatestring_Name; publicstringName{ get{return_Name;} set{_Name=value} } Iknowthecompilermakesaprivateinstancevariabledowninit’smurkydepthswhenoneusesautos,butI’mspoiledanddon’twantthatprivatevariablesittingaroundlookingpointless.Isthereawaytousecustomaccessorswithoutaprivatevariable?AnswerPropertiesdon’tneedbackingvariables(fields)atall.Whiletheycanbeusedforencapsulatingsimplefieldsyoucanalsousethemtoaccessotherdata.publicDecimalGrandTotal{get{returnFreightTotal+TaxTotal+LineTotal;}} orpublicstringSomeStatus{get{returnSomeMethodCall();}} Ifthegoalistosimplyencapsulatesomefieldwithapropertyyouwouldneedsomesortofbackingfieldifyouarenotusingautomaticproperties.AttributionSource:Link,QuestionAuthor:TinCan,AnswerAuthor:jhappoldtSharethis:ClicktoshareonTwitter(Opensinnewwindow)ClicktoshareonFacebook(Opensinnewwindow)ClicktoshareonTelegram(Opensinnewwindow)ClicktoshareonWhatsApp(Opensinnewwindow)RelatedLeaveaCommentCancelreplyCommentName Email WebsiteSavemyname,email,andwebsiteinthisbrowserforthenexttimeIcomment. ΔSearchSearchLatestPostCompiletimesizeofdatamemberstd::arrayinnon-classtemplate(C++14)NestedlistofdictionarywithnestedlistofdictionaryintoaPandasdataframeHowtoincreasesliderlengthinipywidgetsAngular:node_modules/@types/babel_traverse/index.d.ts(1137,43):errorTS1109:ExpressionexpectedHowdoesLaravelsanctumexpiretokens?reportthisadreportthisadSteamPassinginstallparametersforSteamgamefromWindowscommandlineSteamGamesNotLaunching(I’veTriedEverything!)Garry’sModSteamServer?WhathappensifmyswtorsubscriptionendsandIimmediatelyrenewit?HowdoIcreateaclosedbetaonSteam?MinecraftWhat’stheminimumnumberofboostertracksneededtogetuptofullspeed?[duplicate]Howcanimakearidablemob?Whereisthemodfolder?Howmanysecondsis100Ticks?Howlongdomonsterstaketodespawn?[duplicate]DiabloDiablo2empoweredsummoningskillsafterweaponswapHowdoIaccessmylegacygamesusingtheBattle.netdesktopapp?“Battle.netisunabletoidentifyyourapplicationversion”inWine(Linux)MaxbuyingpriceatvendorsCantheCowKing’sSetonlydropintheSecretCowLevel?reportthisadxx



請為這篇文章評分?